Skip to content

Commit 6e7eabb

Browse files
committed
dashboard: move MallocNanoZone to host configuration
We need this on every build and I forgot to put it on the new ones. Move it to the host where it's not forgettable. Hopefully fixes golang/go#49723. Change-Id: I9263f8aa9d847250bb438f59c04fe48bcfd5b1da Reviewed-on: https://go-review.googlesource.com/c/build/+/366136 Trust: Heschi Kreinick <[email protected]> Run-TryBot: Heschi Kreinick <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Bryan C. Mills <[email protected]>
1 parent 1a491fa commit 6e7eabb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dashboard/builders.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,7 @@ var Hosts = map[string]*HostConfig{
522522
Notes: "MacStadium macOS Monterey (12.0) VM under VMWare ESXi",
523523
env: []string{
524524
"GOROOT_BOOTSTRAP=/Users/gopher/goboot", // Go 1.17.3
525+
"MallocNanoZone=0", // golang.org/issue/49138
525526
},
526527
SSHUsername: "gopher",
527528
HermeticReverse: true, // we destroy the VM when done & let cmd/makemac recreate
@@ -2339,7 +2340,6 @@ func init() {
23392340
HostType: "host-darwin-amd64-12_0",
23402341
distTestAdjust: macTestPolicy,
23412342
buildsRepo: defaultPlusExpBuild,
2342-
env: []string{"MallocNanoZone=0"}, // golang.org/issue/49138
23432343
})
23442344
addBuilder(BuildConfig{
23452345
Name: "darwin-amd64-nocgo",
@@ -2356,7 +2356,6 @@ func init() {
23562356
addBuilder(BuildConfig{
23572357
Name: "darwin-arm64-12_0-toothrot",
23582358
HostType: "host-darwin-arm64-12_0-toothrot",
2359-
env: []string{"MallocNanoZone=0"}, // golang.org/issue/49138
23602359
KnownIssue: 49149,
23612360
distTestAdjust: macTestPolicy,
23622361
buildsRepo: defaultPlusExpBuild,

0 commit comments

Comments
 (0)