Skip to content

Commit 4c648a9

Browse files
committed
dashboard: use snapshots on Plan 9 builders
This change enables snapshots on Plan 9 builders, so running the tests for each of the golang.org/x repositories will not require to rebuild Go every time. Change-Id: I305b713a48c155ebba2c03f39633d17a6fd71e6f Reviewed-on: https://go-review.googlesource.com/c/build/+/208359 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 37c0486 commit 4c648a9

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

dashboard/builders.go

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2379,14 +2379,12 @@ func init() {
23792379
addBuilder(BuildConfig{
23802380
Name: "plan9-arm",
23812381
HostType: "host-plan9-arm-0intro",
2382-
SkipSnapshot: true,
23832382
shouldRunDistTest: noTestDir,
23842383
buildsRepo: onlyMaster,
23852384
})
23862385
addBuilder(BuildConfig{
2387-
Name: "plan9-amd64-9front",
2388-
HostType: "host-plan9-amd64-0intro",
2389-
SkipSnapshot: true,
2386+
Name: "plan9-amd64-9front",
2387+
HostType: "host-plan9-amd64-0intro",
23902388
shouldRunDistTest: func(distTestName string, isTry bool) bool {
23912389
if !noTestDir(distTestName, isTry) {
23922390
return false
@@ -2401,9 +2399,8 @@ func init() {
24012399
buildsRepo: onlyMaster,
24022400
})
24032401
addBuilder(BuildConfig{
2404-
Name: "plan9-386-0intro",
2405-
HostType: "host-plan9-386-0intro",
2406-
SkipSnapshot: true,
2402+
Name: "plan9-386-0intro",
2403+
HostType: "host-plan9-386-0intro",
24072404
shouldRunDistTest: func(distTestName string, isTry bool) bool {
24082405
if !noTestDir(distTestName, isTry) {
24092406
return false

0 commit comments

Comments
 (0)