Skip to content

Commit e41b086

Browse files
dmitshurgopherbot
authored andcommitted
dashboard: stop expecting macOS and Windows reverse builders
These coordinator-specific reverse builders have stopped doing work as CL 589659 and CL 589660. They're being stopped and so they're no longer expected to connect to the coordinator. For golang/go#67761. Change-Id: Id3a4ab94e24a57bd5dc3db900dd486e348857682 Reviewed-on: https://go-review.googlesource.com/c/build/+/591156 Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]>
1 parent f47adb8 commit e41b086

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

dashboard/builders.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,31 +153,31 @@ var Hosts = map[string]*HostConfig{
153153
},
154154
"host-darwin-amd64-10_15-aws": {
155155
IsReverse: true,
156-
ExpectNum: 2,
156+
ExpectNum: 0, // was 2 before migration to LUCI
157157
Notes: "AWS macOS Catalina (10.15) VM under QEMU",
158158
SSHUsername: "gopher",
159159
HermeticReverse: true, // we destroy the VM when done & recreate
160160
GoogleReverse: true,
161161
},
162162
"host-darwin-amd64-11-aws": {
163163
IsReverse: true,
164-
ExpectNum: 2,
164+
ExpectNum: 0, // was 2 before migration to LUCI
165165
Notes: "AWS macOS Big Sur (11) VM under QEMU",
166166
SSHUsername: "gopher",
167167
HermeticReverse: true, // we destroy the VM when done & recreate
168168
GoogleReverse: true,
169169
},
170170
"host-darwin-amd64-12-aws": {
171171
IsReverse: true,
172-
ExpectNum: 6,
172+
ExpectNum: 0, // was 6 before migration to LUCI
173173
Notes: "AWS macOS Monterey (12) VM under QEMU",
174174
SSHUsername: "gopher",
175175
HermeticReverse: true, // we destroy the VM when done & recreate
176176
GoogleReverse: true,
177177
},
178178
"host-darwin-amd64-13-aws": {
179179
IsReverse: true,
180-
ExpectNum: 2,
180+
ExpectNum: 0, // was 2 before migration to LUCI
181181
Notes: "AWS macOS Ventura (13) VM under QEMU",
182182
SSHUsername: "gopher",
183183
HermeticReverse: true, // we destroy the VM when done & recreate
@@ -186,13 +186,13 @@ var Hosts = map[string]*HostConfig{
186186
"host-darwin-arm64-11": {
187187
IsReverse: true,
188188
Notes: "macOS Big Sur (11) ARM64 (M1) on Mac minis in a Google office",
189-
ExpectNum: 3,
189+
ExpectNum: 0, // was 3 before migration to LUCI
190190
SSHUsername: "gopher",
191191
GoogleReverse: true,
192192
},
193193
"host-darwin-arm64-12": {
194194
IsReverse: true,
195-
ExpectNum: 3,
195+
ExpectNum: 0, // was 3 before migration to LUCI
196196
Notes: "macOS Monterey (12) ARM64 (M1) on Mac minis in a Google office",
197197
SSHUsername: "gopher",
198198
GoogleReverse: true,
@@ -571,7 +571,7 @@ var Hosts = map[string]*HostConfig{
571571
Notes: "Azure windows 11 arm64 VMs",
572572
HostArch: "windows-arm64",
573573
IsReverse: true,
574-
ExpectNum: 2,
574+
ExpectNum: 0, // was 2 before migration to LUCI
575575
},
576576
}
577577

0 commit comments

Comments
 (0)