Skip to content

Commit b7678aa

Browse files
committed
dashboard: reconfigure host counts for darwin amd64 builders
This change updates the desired host counts for darwin amd64 hosts. The numbers require changing because: - Migration to the new cluster with diffrent counts for amd64 machines. - The addition of macOS 11.0 builders. Updates golang/go#40762 Change-Id: I4a0dfcc8bd812ede38acbb98c0b317e03059b525 Reviewed-on: https://go-review.googlesource.com/c/build/+/307474 Trust: Carlos Amedee <[email protected]> Run-TryBot: Carlos Amedee <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent 741e4d9 commit b7678aa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

dashboard/builders.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ var Hosts = map[string]*HostConfig{
465465
},
466466
"host-darwin-10_12": &HostConfig{
467467
IsReverse: true,
468-
ExpectNum: 5,
468+
ExpectNum: 3,
469469
Notes: "MacStadium OS X 10.12 VM under VMWare ESXi",
470470
env: []string{
471471
"GOROOT_BOOTSTRAP=/Users/gopher/go1.4",
@@ -475,7 +475,7 @@ var Hosts = map[string]*HostConfig{
475475
},
476476
"host-darwin-10_14": &HostConfig{
477477
IsReverse: true,
478-
ExpectNum: 7,
478+
ExpectNum: 3,
479479
Notes: "MacStadium macOS Mojave (10.14) VM under VMWare ESXi",
480480
env: []string{
481481
"GOROOT_BOOTSTRAP=/Users/gopher/goboot", // Go 1.12.1
@@ -485,7 +485,7 @@ var Hosts = map[string]*HostConfig{
485485
},
486486
"host-darwin-10_15": &HostConfig{
487487
IsReverse: true,
488-
ExpectNum: 7,
488+
ExpectNum: 5,
489489
Notes: "MacStadium macOS Catalina (10.15) VM under VMWare ESXi",
490490
env: []string{
491491
"GOROOT_BOOTSTRAP=/Users/gopher/goboot", // Go 1.12.1
@@ -495,7 +495,7 @@ var Hosts = map[string]*HostConfig{
495495
},
496496
"host-darwin-amd64-11_0": &HostConfig{
497497
IsReverse: true,
498-
ExpectNum: 1,
498+
ExpectNum: 5,
499499
Notes: "MacStadium macOS Big Sur (11.0) VM under VMWare ESXi",
500500
env: []string{
501501
"GOROOT_BOOTSTRAP=/Users/gopher/goboot", // Go 1.13.4

dashboard/builders_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -877,8 +877,8 @@ func TestExpectedMacstadiumVMCount(t *testing.T) {
877877
got += config.ExpectNum
878878
}
879879
}
880-
if got != 20 {
881-
t.Fatalf("macstadium host count: got %d; want 20", got)
880+
if got != 16 {
881+
t.Fatalf("macstadium host count: got %d; want 16", got)
882882
}
883883
}
884884

0 commit comments

Comments
 (0)