Skip to content

Commit

Permalink
dashboard: update bootstrap Go version to 1.22.6
Browse files Browse the repository at this point in the history
For golang/go#64751.

Change-Id: Ib8ba94bafc661bd4142dc2f180254d484ce3efa6
Reviewed-on: https://go-review.googlesource.com/c/build/+/605980
Auto-Submit: Dmitri Shuralyov <[email protected]>
Reviewed-by: Cherry Mui <[email protected]>
LUCI-TryBot-Result: Go LUCI <[email protected]>
Reviewed-by: Dmitri Shuralyov <[email protected]>
  • Loading branch information
dmitshur authored and gopherbot committed Aug 20, 2024
1 parent 79600ec commit ec1c451
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,12 @@ var Builders = map[string]*BuildConfig{}

// GoBootstrap is the bootstrap Go version.
//
// For bootstrap versions prior to Go 1.21.0,
// bootstrap Go builds with this name must be in the buildlet bucket,
// usually uploaded by 'genbootstrap -upload all'.
const GoBootstrap = "go1.20.6"
// For bootstrap versions Go 1.21.0 and newer,
// bootstrap Go builds for Windows (only) with this name must be in the buildlet bucket,
// usually uploaded by 'genbootstrap -upload windows-*'.
// However, as of 2024-08-16 all existing coordinator builders for Windows have migrated
// to LUCI, so nothing needs to be done for Windows after all.
const GoBootstrap = "go1.22.6"

// Hosts contains the names and configs of all the types of
// buildlets. They can be VMs, containers, or dedicated machines.
Expand Down Expand Up @@ -444,10 +446,6 @@ var Hosts = map[string]*HostConfig{
IsReverse: true,
ExpectNum: 2,
Owners: []*gophers.Person{gh("mengzhuo")},

// Use go1.20.7 (slightly newer than the default go1.20.6 on 2023-08-18)
// for https://go.dev/issue/62104#issuecomment-1683207172.
GoBootstrap: "go1.20.7",
},
"host-linux-s390x": {
Notes: "run by IBM",
Expand Down Expand Up @@ -664,9 +662,11 @@ type HostConfig struct {
// toolchain for each build, typically because it cannot download from
// storage.googleapis.com.
//
// For bootstrap versions prior to Go 1.21.0,
// a bootstrap toolchain built with that version must be in the buildlet bucket,
// usually uploaded by 'genbootstrap -upload all'.
// For bootstrap versions Go 1.21.0 and newer,
// bootstrap Go builds for Windows (only) with that version must be in the buildlet bucket,
// usually uploaded by 'genbootstrap -upload windows-*'.
// However, as of 2024-08-16 all existing coordinator builders for Windows have migrated
// to LUCI, so nothing needs to be done for Windows after all.
//
// (See the GoBootstrapURL method.)
GoBootstrap string
Expand Down

0 comments on commit ec1c451

Please sign in to comment.