Skip to content

Commit 3a6c4f3

Browse files
committed
dashboard: add windows-arm-10 builder
This adds a windows-arm builder using host-windows-arm64-mini hosts. The new BuildConfig has a KnownIssue until we can verify that the builders are building correctly. For golang/go#47019 Change-Id: I0505d4dc367dbb687290facbddc718eb13567025 Reviewed-on: https://go-review.googlesource.com/c/build/+/344990 Trust: Alexander Rakoczy <[email protected]> Run-TryBot: Alexander Rakoczy <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent f087b01 commit 3a6c4f3

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

dashboard/builders.go

+19-2
Original file line numberDiff line numberDiff line change
@@ -452,10 +452,9 @@ var Hosts = map[string]*HostConfig{
452452
"host-windows-arm64-mini": &HostConfig{
453453
Notes: "macOS hosting Windows 10 in qemu with HVM acceleration.",
454454
buildletURLTmpl: "http://storage.googleapis.com/$BUCKET/buildlet.windows-arm64",
455-
env: []string{"GOARCH=arm64"},
456455
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-windows-arm64-f22ec5.tar.gz",
457456
IsReverse: true,
458-
ExpectNum: 1,
457+
ExpectNum: 7,
459458
},
460459
"host-darwin-10_12": &HostConfig{
461460
IsReverse: true,
@@ -2266,6 +2265,24 @@ func init() {
22662265
buildsRepo: func(repo, branch, goBranch string) bool {
22672266
return atLeastGo1(goBranch, 17) && buildRepoByDefault(repo)
22682267
},
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,
22692286
})
22702287
addBuilder(BuildConfig{
22712288
Name: "darwin-amd64-10_12",

0 commit comments

Comments
 (0)