Skip to content

Commit 838d814

Browse files
heschigopherbot
authored andcommitted
dashboard: reduce GOMAXPROCS on Windows 11 ARM64
The Windows 11 ARM64 builder is experiencing occasional OOMs while building tests. Reducing GOMAXPROCS will reduce the go command's parallelism and hopefully prevent them. For golang/go#51019. Change-Id: Ia4bfdddaca178c130b9b57087a66a54cff903a05 Reviewed-on: https://go-review.googlesource.com/c/build/+/385182 Trust: Heschi Kreinick <[email protected]> Run-TryBot: Heschi Kreinick <[email protected]> Auto-Submit: Heschi Kreinick <[email protected]> Reviewed-by: Bryan Mills <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent 8a3cec9 commit 838d814

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

dashboard/builders.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2262,6 +2262,7 @@ func init() {
22622262
},
22632263
env: []string{
22642264
"GOARCH=arm64",
2265+
"GOMAXPROCS=4", // OOM problems, see go.dev/issue/51019
22652266
},
22662267
})
22672268
addBuilder(BuildConfig{

0 commit comments

Comments
 (0)