@@ -100,9 +100,7 @@ var slowBotAliases = map[string]string{
100
100
"windows-386" : "windows-386-2008" ,
101
101
"windows-amd64" : "windows-amd64-2016" ,
102
102
"windows-arm" : "windows-arm-zx2c4" ,
103
- // TODO:(golang/go#47019) - uncomment when builder returns and
104
- // update test.
105
- // "windows-arm64": "windows-arm64-11",
103
+ "windows-arm64" : "windows-arm64-11" ,
106
104
}
107
105
108
106
// Builders are the different build configurations.
@@ -568,6 +566,12 @@ var Hosts = map[string]*HostConfig{
568
566
ExpectNum : 0 ,
569
567
Owners : []* gophers.Person {gh ("zx2c4" )},
570
568
},
569
+ "host-windows11-arm64-azure" : { // host name known to cmd/buildlet/stage0, cannot change
570
+ Notes : "Azure windows 11 arm64 VMs" ,
571
+ HostArch : "windows-arm64" ,
572
+ IsReverse : true ,
573
+ ExpectNum : 5 ,
574
+ },
571
575
}
572
576
573
577
func gh (githubUsername string ) * gophers.Person {
@@ -2463,6 +2467,17 @@ func init() {
2463
2467
"GOARM=7" ,
2464
2468
"GO_TEST_TIMEOUT_SCALE=3" },
2465
2469
})
2470
+ addBuilder (BuildConfig {
2471
+ Name : "windows-arm64-11" ,
2472
+ HostType : "host-windows11-arm64-azure" ,
2473
+ numTryTestHelpers : 1 ,
2474
+ env : []string {
2475
+ "GOARCH=arm64" ,
2476
+ // Note: GOMAXPROCS=4 workaround for go.dev/issue/51019
2477
+ // tentatively removed here, since Azure VMs have 3x more
2478
+ // RAM than the previous win11/arm64 machines.
2479
+ },
2480
+ })
2466
2481
addBuilder (BuildConfig {
2467
2482
Name : "darwin-amd64-10_14" ,
2468
2483
HostType : "host-darwin-amd64-10_14-aws" ,
0 commit comments