Skip to content

Commit 6afe8a2

Browse files
committed
dashboard: update windows-amd64-race builder to Windows Server 2016 image
The purpose of the -race builder is to check for bugs on the Go side, so use the newer available Windows version with the expectation that there should be fewer unfixed bugs left in it. Take this easy step to eliminate a variable for issue golang/go#39196. Also delete host-windows-amd64-2008-big, since it's no longer used. For golang/go#39196. Change-Id: I9095a73ab21a151e5972219bccd5a16b249765b4 Reviewed-on: https://go-review.googlesource.com/c/build/+/235419 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Alexander Rakoczy <alex@golang.org>
1 parent 5a8fb63 commit 6afe8a2

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

dashboard/builders.go

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -444,14 +444,6 @@ var Hosts = map[string]*HostConfig{
444444
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-windows-amd64.tar.gz",
445445
SSHUsername: "gopher",
446446
},
447-
"host-windows-amd64-2008-big": &HostConfig{
448-
Notes: "Same as host-windows-amd64-2008, but on n1-highcpu-16",
449-
VMImage: "windows-amd64-server-2008r2-v7",
450-
machineType: "n1-highcpu-16", // 16 vCPUs, 14.4 GB mem
451-
buildletURLTmpl: "http://storage.googleapis.com/$BUCKET/buildlet.windows-amd64",
452-
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-windows-amd64.tar.gz",
453-
SSHUsername: "gopher",
454-
},
455447
"host-windows-amd64-2012": &HostConfig{
456448
VMImage: "windows-amd64-server-2012r2-v7",
457449
machineType: "n1-highcpu-4", // 4 vCPUs, 3.6 GB mem
@@ -2099,7 +2091,7 @@ func init() {
20992091
})
21002092
addBuilder(BuildConfig{
21012093
Name: "windows-amd64-race",
2102-
HostType: "host-windows-amd64-2008-big",
2094+
HostType: "host-windows-amd64-2016-big",
21032095
Notes: "Only runs -race tests (./race.bat)",
21042096
env: []string{
21052097
"GOARCH=amd64",

0 commit comments

Comments
 (0)