Skip to content

Commit

Permalink
dashboard: fix windows-arm-10 build failure
Browse files Browse the repository at this point in the history
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 <alex@golang.org>
Run-TryBot: Alexander Rakoczy <alex@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
  • Loading branch information
toothrot committed Aug 25, 2021
1 parent 3a6c4f3 commit b3da0f0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dashboard/builders.go
Expand Up @@ -2267,7 +2267,6 @@ func init() {
},
env: []string{
"GOARCH=arm64",
"GOHOSTARCH=arm64",
},
})
addBuilder(BuildConfig{
Expand All @@ -2278,9 +2277,8 @@ func init() {
return atLeastGo1(goBranch, 17) && buildRepoByDefault(repo)
},
env: []string{
"GOARCH=arm",
"GOARCH=arm64",
"GOARM=7",
"GOHOSTARCH=arm",
},
KnownIssue: 47019,
})
Expand Down

0 comments on commit b3da0f0

Please sign in to comment.