@@ -25,9 +25,8 @@ import (
25
25
// syntax entirely. This is a first draft.
26
26
var slowBotAliases = map [string ]string {
27
27
// Known missing builders:
28
- "darwin-arm" : "" , // TODO(golang.org/issue/37611): Remove once port is removed.
29
- "darwin-arm64" : "" , // TODO(golang.org/issue/39782): Add builder for darwin/arm64.
30
- "ios-amd64" : "" , // There is no builder for the iOS Simulator. See issues 42100 and 42177.
28
+ "darwin-arm" : "" , // TODO(golang.org/issue/37611): Remove once port is removed.
29
+ "ios-amd64" : "" , // There is no builder for the iOS Simulator. See issues 42100 and 42177.
31
30
32
31
"386" : "linux-386" ,
33
32
"aix" : "aix-ppc64" ,
@@ -42,6 +41,7 @@ var slowBotAliases = map[string]string{
42
41
"darwin" : "darwin-amd64-10_14" ,
43
42
"darwin-386" : "darwin-386-10_14" , // TODO(golang.org/issue/37610): Remove when Go 1.14 is no longer supported.
44
43
"darwin-amd64" : "darwin-amd64-10_14" ,
44
+ "darwin-arm64" : "darwin-arm64-11_0-toothrot" ,
45
45
"ios-arm64" : "ios-arm64-corellium" ,
46
46
"dragonfly" : "dragonfly-amd64" ,
47
47
"freebsd" : "freebsd-amd64-12_0" ,
@@ -511,6 +511,15 @@ var Hosts = map[string]*HostConfig{
511
511
SSHUsername : "gopher" ,
512
512
HermeticReverse : true , // we destroy the VM when done & let cmd/makemac recreate
513
513
},
514
+ "host-darwin-arm64-11_0-toothrot" : & HostConfig {
515
+ IsReverse : true ,
516
+ ExpectNum : 2 ,
517
+ Notes : "macOS Big Sur (11.0) ARM64 (M1). Mac mini" ,
518
+ env : []string {
519
+ "GOROOT_BOOTSTRAP=/Users/gopher/goboot" ,
520
+ },
521
+ SSHUsername : "gopher" ,
522
+ },
514
523
"host-linux-s390x" : & HostConfig {
515
524
Notes : "run by IBM" ,
516
525
OwnerGithub : "ruixin-bao" ,
@@ -2286,6 +2295,16 @@ func init() {
2286
2295
distTestAdjust : noTestDirAndNoReboot ,
2287
2296
env : []string {"CGO_ENABLED=0" },
2288
2297
})
2298
+ addBuilder (BuildConfig {
2299
+ Name : "darwin-arm64-11_0-toothrot" ,
2300
+ HostType : "host-darwin-arm64-11_0-toothrot" ,
2301
+ distTestAdjust : macTestPolicy ,
2302
+ buildsRepo : func (repo , branch , goBranch string ) bool {
2303
+ // Darwin ARM64 added in Go 1.16.
2304
+ return atLeastGo1 (goBranch , 16 ) && defaultPlusExpBuild (repo , branch , goBranch )
2305
+ },
2306
+ KnownIssue : 39782 ,
2307
+ })
2289
2308
addBuilder (BuildConfig {
2290
2309
Name : "darwin-amd64-race" ,
2291
2310
HostType : "host-darwin-10_15" ,
0 commit comments