File tree 1 file changed +19
-2
lines changed
1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -452,10 +452,9 @@ var Hosts = map[string]*HostConfig{
452
452
"host-windows-arm64-mini" : & HostConfig {
453
453
Notes : "macOS hosting Windows 10 in qemu with HVM acceleration." ,
454
454
buildletURLTmpl : "http://storage.googleapis.com/$BUCKET/buildlet.windows-arm64" ,
455
- env : []string {"GOARCH=arm64" },
456
455
goBootstrapURLTmpl : "https://storage.googleapis.com/$BUCKET/gobootstrap-windows-arm64-f22ec5.tar.gz" ,
457
456
IsReverse : true ,
458
- ExpectNum : 1 ,
457
+ ExpectNum : 7 ,
459
458
},
460
459
"host-darwin-10_12" : & HostConfig {
461
460
IsReverse : true ,
@@ -2266,6 +2265,24 @@ func init() {
2266
2265
buildsRepo : func (repo , branch , goBranch string ) bool {
2267
2266
return atLeastGo1 (goBranch , 17 ) && buildRepoByDefault (repo )
2268
2267
},
2268
+ env : []string {
2269
+ "GOARCH=arm64" ,
2270
+ "GOHOSTARCH=arm64" ,
2271
+ },
2272
+ })
2273
+ addBuilder (BuildConfig {
2274
+ Name : "windows-arm-10" ,
2275
+ HostType : "host-windows-arm64-mini" ,
2276
+ numTryTestHelpers : 1 ,
2277
+ buildsRepo : func (repo , branch , goBranch string ) bool {
2278
+ return atLeastGo1 (goBranch , 17 ) && buildRepoByDefault (repo )
2279
+ },
2280
+ env : []string {
2281
+ "GOARCH=arm" ,
2282
+ "GOARM=7" ,
2283
+ "GOHOSTARCH=arm" ,
2284
+ },
2285
+ KnownIssue : 47019 ,
2269
2286
})
2270
2287
addBuilder (BuildConfig {
2271
2288
Name : "darwin-amd64-10_12" ,
You can’t perform that action at this time.
0 commit comments