Skip to content

Commit b3da0f0

Browse files
committed
dashboard: fix windows-arm-10 build failure
The build is failing with 0xc000007b, which is an architecture mismatch. Instead, just set GOARM=7, which is aligned with the windows-arm-zx2c4 builder we are replacing. For golang/go#47019 Change-Id: I1f2aa18f6cdeb0dca4b234a164b915f2148f3936 Reviewed-on: https://go-review.googlesource.com/c/build/+/345130 Trust: Alexander Rakoczy <[email protected]> Run-TryBot: Alexander Rakoczy <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent 3a6c4f3 commit b3da0f0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dashboard/builders.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2267,7 +2267,6 @@ func init() {
22672267
},
22682268
env: []string{
22692269
"GOARCH=arm64",
2270-
"GOHOSTARCH=arm64",
22712270
},
22722271
})
22732272
addBuilder(BuildConfig{
@@ -2278,9 +2277,8 @@ func init() {
22782277
return atLeastGo1(goBranch, 17) && buildRepoByDefault(repo)
22792278
},
22802279
env: []string{
2281-
"GOARCH=arm",
2280+
"GOARCH=arm64",
22822281
"GOARM=7",
2283-
"GOHOSTARCH=arm",
22842282
},
22852283
KnownIssue: 47019,
22862284
})

0 commit comments

Comments
 (0)