Skip to content

Commit a66de46

Browse files
committed
dashboard: set SkipSnapshot on freebsd-arm and dragonfly-amd64
No point snapshotting for non-sharded builders. And snapshotting is too slow and hits the timeout on freebsd-arm. Updates golang/go#21191 Change-Id: I225aa6af493b92aa45589491c69853e13d513dd1 Reviewed-on: https://go-review.googlesource.com/53493 Reviewed-by: Yuval Pavel Zholkover <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent c1ae927 commit a66de46

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

dashboard/builders.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1211,12 +1211,14 @@ func init() {
12111211
TryOnly: true,
12121212
})
12131213
addBuilder(BuildConfig{
1214-
Name: "dragonfly-amd64",
1215-
HostType: "host-dragonfly-amd64-tdfbsd",
1214+
Name: "dragonfly-amd64",
1215+
HostType: "host-dragonfly-amd64-tdfbsd",
1216+
SkipSnapshot: true,
12161217
})
12171218
addBuilder(BuildConfig{
1218-
Name: "freebsd-arm",
1219-
HostType: "host-freebsd-arm-paulzhol",
1219+
Name: "freebsd-arm",
1220+
HostType: "host-freebsd-arm-paulzhol",
1221+
SkipSnapshot: true,
12201222
env: []string{
12211223
"GOARM=7",
12221224
"CGO_ENABLED=1",

0 commit comments

Comments
 (0)