Skip to content

Commit d91bc07

Browse files
dashboard: set GOMAXPROCS=1 for android corellium builder
Avoid the OOM killer. Fixes golang/go#50084 Change-Id: I6e142bf8484d50392a360c3be9205ce223304bdc Reviewed-on: https://go-review.googlesource.com/c/build/+/381514 Trust: Ian Lance Taylor <[email protected]> Run-TryBot: Ian Lance Taylor <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent da4f1d2 commit d91bc07

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dashboard/builders.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,9 @@ var Hosts = map[string]*HostConfig{
646646
ExpectNum: 3,
647647
env: []string{
648648
"GOROOT_BOOTSTRAP=/data/data/com.termux/files/home/go-android-arm64-bootstrap",
649+
// Only run one job at a time to avoid the OOM killer.
650+
// Issue 50084.
651+
"GOMAXPROCS=1",
649652
},
650653
},
651654
"host-aix-ppc64-osuosl": &HostConfig{

0 commit comments

Comments
 (0)