Skip to content

Commit 67073b9

Browse files
committed
dashboard: disable plan9-386 builder
It hasn't passed in months and now spins, wasting resources. Updates golang/go#31261 Updates golang/go#29801 Change-Id: Idcf13ae915bad4febb156c5c5d49f07f76cf9d49 Reviewed-on: https://go-review.googlesource.com/c/build/+/172797 Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent b5f252a commit 67073b9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

dashboard/builders.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1768,6 +1768,7 @@ func init() {
17681768
HostType: "host-plan9-386-gce",
17691769
MaxAtOnce: 2,
17701770
numTestHelpers: 1,
1771+
tryOnly: true, // disable it for now; Issue 31261, Issue 29801
17711772
shouldRunDistTest: func(distTestName string, isTry bool) bool {
17721773
switch distTestName {
17731774
case "api",

dashboard/builders_test.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -451,11 +451,12 @@ func TestBuilderConfig(t *testing.T) {
451451
{b("[email protected]", "go"), onlyPost},
452452
{b("[email protected]", "go"), onlyPost},
453453

454-
// plan9 only lives at master. We don't support any past releases.
455-
{b("plan9-386", "go"), onlyPost},
454+
// plan9 only lived at master. We didn't support any past releases.
455+
// But it's off for now as it's always failing.
456+
{b("plan9-386", "go"), none}, // temporarily disabled
457+
{b("plan9-386", "net"), none}, // temporarily disabled
456458
{b("[email protected]", "go"), none},
457459
{b("[email protected]", "go"), none},
458-
{b("plan9-386", "net"), onlyPost},
459460
{b("[email protected]", "net"), none},
460461
{b("[email protected]", "net"), none},
461462
{b("plan9-amd64-9front", "go"), onlyPost},

0 commit comments

Comments
 (0)