Skip to content

Commit a5bca46

Browse files
heschigopherbot
authored andcommitted
dashboard: update bootstrap Go version to 1.20.6
For golang/go#54265. Change-Id: Ic1b09a6eee77c1c3552be29514031233dc740c13 Reviewed-on: https://go-review.googlesource.com/c/build/+/511275 TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Heschi Kreinick <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Run-TryBot: Heschi Kreinick <[email protected]>
1 parent 13e8e51 commit a5bca46

File tree

1 file changed

+16
-25
lines changed

1 file changed

+16
-25
lines changed

dashboard/builders.go

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ var Builders = map[string]*BuildConfig{}
122122
// GoBootstrap is the bootstrap Go version.
123123
// Bootstrap Go builds with this name must be in the bucket,
124124
// usually uploaded by 'genbootstrap -upload all'.
125-
const GoBootstrap = "go1.17.13"
125+
const GoBootstrap = "go1.20.6"
126126

127127
// Hosts contains the names and configs of all the types of
128128
// buildlets. They can be VMs, containers, or dedicated machines.
@@ -477,58 +477,49 @@ var Hosts = map[string]*HostConfig{
477477
Notes: "NetBSD 9.3; GCE VM is built from script in build/env/netbsd-386",
478478
machineType: "n2", // force Intel; see go.dev/issue/49209
479479
SSHUsername: "root",
480-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
481480
},
482481
"host-netbsd-amd64-9_3": {
483482
VMImage: "netbsd-amd64-9-3-202211120320v2",
484483
Notes: "NetBSD 9.3; GCE VM is built from script in build/env/netbsd-amd64",
485484
machineType: "n2", // force Intel; see go.dev/issue/49209
486485
SSHUsername: "root",
487-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
488486
},
489487
"host-netbsd-arm-bsiegert": {
490-
IsReverse: true,
491-
ExpectNum: 1,
492-
Owners: []*gophers.Person{gh("bsiegert")},
493-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
488+
IsReverse: true,
489+
ExpectNum: 1,
490+
Owners: []*gophers.Person{gh("bsiegert")},
494491
},
495492
"host-netbsd-arm64-bsiegert": {
496-
IsReverse: true,
497-
ExpectNum: 1,
498-
Owners: []*gophers.Person{gh("bsiegert")},
499-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
493+
IsReverse: true,
494+
ExpectNum: 1,
495+
Owners: []*gophers.Person{gh("bsiegert")},
500496
},
501497
"host-openbsd-386-72": {
502498
VMImage: "openbsd-386-72",
503499
machineType: "n2", // force Intel; see go.dev/issue/49209
504500
Notes: "OpenBSD 7.2; GCE VM, built from build/env/openbsd-386",
505501
SSHUsername: "gopher",
506-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
507502
},
508503
"host-openbsd-amd64-72": {
509504
VMImage: "openbsd-amd64-72",
510505
machineType: "n2", // force Intel; see go.dev/issue/49209
511506
Notes: "OpenBSD 7.2; GCE VM, built from build/env/openbsd-amd64",
512507
SSHUsername: "gopher",
513-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
514508
},
515509
"host-openbsd-arm-joelsing": {
516-
IsReverse: true,
517-
ExpectNum: 1,
518-
Owners: []*gophers.Person{gh("4a6f656c")},
519-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
510+
IsReverse: true,
511+
ExpectNum: 1,
512+
Owners: []*gophers.Person{gh("4a6f656c")},
520513
},
521514
"host-openbsd-arm64-joelsing": {
522-
IsReverse: true,
523-
ExpectNum: 1,
524-
Owners: []*gophers.Person{gh("4a6f656c")},
525-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
515+
IsReverse: true,
516+
ExpectNum: 1,
517+
Owners: []*gophers.Person{gh("4a6f656c")},
526518
},
527519
"host-openbsd-mips64-joelsing": {
528-
IsReverse: true,
529-
ExpectNum: 1,
530-
Owners: []*gophers.Person{gh("4a6f656c")},
531-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
520+
IsReverse: true,
521+
ExpectNum: 1,
522+
Owners: []*gophers.Person{gh("4a6f656c")},
532523
},
533524
"host-openbsd-ppc64-n2vi": {
534525
IsReverse: true,

0 commit comments

Comments
 (0)