Skip to content

Commit 32ae53c

Browse files
heschigopherbot
authored andcommitted
dashboard/builders: upgrade non-specific Linux builders to Stretch
We have to update the non-versioned builders sometime, and now seems as good as any. This is just an easy first step, still need to figure out vmx and whether to disable the stretch builders on master/1.20. For golang/go#56414. Change-Id: I7f1ce4faa9c6fa1595b7a0c3c72d451b1d18e5f4 Reviewed-on: https://go-review.googlesource.com/c/build/+/445616 Run-TryBot: Heschi Kreinick <[email protected]> Reviewed-by: Bryan Mills <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Auto-Submit: Heschi Kreinick <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent 67d6243 commit 32ae53c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dashboard/builders.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,7 @@ func init() {
14941494
buildsRepo: func(repo, branch, goBranch string) bool {
14951495
return repo == "go" || repo == "crypto"
14961496
},
1497-
HostType: "host-linux-amd64-stretch",
1497+
HostType: "host-linux-amd64-bullseye",
14981498
env: []string{"GOARCH=386", "GOHOSTARCH=386", "GO386=softfloat"},
14991499
})
15001500
addBuilder(BuildConfig{
@@ -1562,7 +1562,7 @@ func init() {
15621562
}
15631563
addBuilder(BuildConfig{
15641564
Name: "misc-compile" + suffix,
1565-
HostType: "host-linux-amd64-stretch",
1565+
HostType: "host-linux-amd64-bullseye",
15661566
tryBot: defaultTrySet(),
15671567
env: []string{
15681568
"GO_DISABLE_OUTBOUND_NETWORK=1",
@@ -1661,7 +1661,7 @@ func init() {
16611661
})
16621662
addBuilder(BuildConfig{
16631663
Name: "linux-amd64-staticlockranking",
1664-
HostType: "host-linux-amd64-stretch",
1664+
HostType: "host-linux-amd64-bullseye",
16651665
Notes: "builder with GOEXPERIMENT=staticlockranking, see go.dev/issue/37937",
16661666
buildsRepo: func(repo, branch, goBranch string) bool {
16671667
return repo == "go"

0 commit comments

Comments
 (0)