dashboard/coordinator: set USER for the -nocgo builder
... since it already caught a problem and was fixed in hg rev 0b99c2137ccc. I pushed this live already just so don't get a whole column of fail that might hide other issues. Real users have USER set anyway. (Perhaps we should set it for all our builders?) LGTM=adg R=golang-codereviews CC=adg, dave, golang-codereviews, minux https://golang.org/cl/137180043
This commit is contained in:
parent
8c30c1b367
commit
89759c3d1a
|
|
@ -67,7 +67,7 @@ func main() {
|
|||
addBuilder(buildConfig{name: "linux-386"})
|
||||
addBuilder(buildConfig{name: "linux-386-387", env: []string{"GO386=387"}})
|
||||
addBuilder(buildConfig{name: "linux-amd64"})
|
||||
addBuilder(buildConfig{name: "linux-amd64-nocgo", env: []string{"CGO_ENABLED=0"}})
|
||||
addBuilder(buildConfig{name: "linux-amd64-nocgo", env: []string{"CGO_ENABLED=0", "USER=root"}})
|
||||
addBuilder(buildConfig{name: "linux-amd64-race"})
|
||||
addBuilder(buildConfig{name: "nacl-386"})
|
||||
addBuilder(buildConfig{name: "nacl-amd64p32"})
|
||||
|
|
|
|||
Loading…
Reference in New Issue