Skip to content

Commit 48cb6ed

Browse files
committed
dashboard: don't build x/exp and x/mobile on the linux-arm-arm5spacemonkey builder
Updates golang/go#11811 Change-Id: I93aa1f062ba976e1758e5f74b25b20411a59819e Reviewed-on: https://go-review.googlesource.com/c/build/+/208579 Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Bryan C. Mills <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 4c648a9 commit 48cb6ed

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

dashboard/builders.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,7 @@ func init() {
17491749
"GO_TEST_TIMEOUT_SCALE=4", // arm is normally 2; double that.
17501750
},
17511751
buildsRepo: func(repo, branch, goBranch string) bool {
1752-
return branch == "master" && goBranch == "master"
1752+
return branch == "master" && goBranch == "master" && defaultBuildsRepoPolicy(repo, branch, goBranch)
17531753
},
17541754
shouldRunDistTest: func(distTest string, isTry bool) bool {
17551755
if strings.Contains(distTest, "vendor/github.com/google/pprof") {

dashboard/builders_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,8 @@ func TestBuilderConfig(t *testing.T) {
307307
{b("linux-386-387", "crypto"), onlyPost},
308308
{b("[email protected]", "net"), none},
309309
{b("[email protected]", "net"), none},
310+
{b("linux-arm-arm5spacemonkey", "exp"), none},
311+
{b("linux-arm-arm5spacemonkey", "mobile"), none},
310312

311313
// The mobile repo requires Go 1.13+.
312314
{b("android-amd64-emu", "go"), both},

0 commit comments

Comments
 (0)