cmd/coodinator,dashboard: remove toothrot mac builders

They have been superseded in CL 406021.

Change-Id: I39c00db6f1237eaaf69885f96cf6fb446829a300
Reviewed-on: https://go-review.googlesource.com/c/build/+/420802
Auto-Submit: Jenny Rakoczy <jenny@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Run-TryBot: Jenny Rakoczy <jenny@golang.org>
This commit is contained in:
Alex Rakoczy 2022-08-03 15:24:34 -04:00 коммит произвёл Gopher Robot
Родитель 313cec3cb4
Коммит 4389c98f9c
2 изменённых файлов: 1 добавлений и 31 удалений

Просмотреть файл

@ -372,7 +372,7 @@ func fetchMakeMacStatus() (errs, warns []string) {
func newMacOSARM64Checker() *healthChecker {
var expect int // Number of expected darwin/arm64 reverse builders based on x/build/dashboard.
for hostType, hc := range dashboard.Hosts {
if !strings.HasPrefix(hostType, "host-darwin-arm64-") || strings.Contains(hostType, "toothrot") || !hc.IsReverse {
if !strings.HasPrefix(hostType, "host-darwin-arm64-") || !hc.IsReverse {
continue
}
expect += hc.ExpectNum

Просмотреть файл

@ -191,15 +191,6 @@ var Hosts = map[string]*HostConfig{
},
SSHUsername: "gopher",
},
"host-darwin-arm64-11_0-toothrot": {
IsReverse: true,
Notes: "macOS Big Sur (11) ARM64 (M1). Mac mini",
ExpectNum: 1,
env: []string{
"GOROOT_BOOTSTRAP=/Users/gopher/goboot",
},
SSHUsername: "gopher",
},
"host-darwin-arm64-12": {
IsReverse: true,
ExpectNum: 3,
@ -209,15 +200,6 @@ var Hosts = map[string]*HostConfig{
},
SSHUsername: "gopher",
},
"host-darwin-arm64-12_0-toothrot": {
IsReverse: true,
ExpectNum: 1,
Notes: "macOS Big Sur (12) ARM64 (M1). Mac mini",
env: []string{
"GOROOT_BOOTSTRAP=/Users/gopher/goboot",
},
SSHUsername: "gopher",
},
"host-dragonfly-amd64-622": {
Notes: "DragonFly BSD 6.2.2 on GCE, built from build/env/dragonfly-amd64",
VMImage: "dragonfly-amd64-622",
@ -2398,18 +2380,6 @@ func init() {
distTestAdjust: noTestDirAndNoReboot,
env: []string{"CGO_ENABLED=0"},
})
addBuilder(BuildConfig{
Name: "darwin-arm64-11_0-toothrot",
HostType: "host-darwin-arm64-11_0-toothrot",
distTestAdjust: macTestPolicy,
buildsRepo: defaultPlusExpBuild,
})
addBuilder(BuildConfig{
Name: "darwin-arm64-12_0-toothrot",
HostType: "host-darwin-arm64-12_0-toothrot",
distTestAdjust: macTestPolicy,
buildsRepo: defaultPlusExpBuild,
})
addBuilder(BuildConfig{
Name: "darwin-arm64-11",
HostType: "host-darwin-arm64-11",