Skip to content

Commit 357a862

Browse files
committed
dashboard: allow 45 minutes for 386 OpenBSD builds
We retry these forever, so regardless of how you feel about the speed of the build, letting them finish is better than that. Fixes golang/go#49666. Change-Id: Id5f9e1124f77047bcc6c73675f47c2acd90231b3 Reviewed-on: https://go-review.googlesource.com/c/build/+/382978 Trust: Heschi Kreinick <[email protected]> Run-TryBot: Heschi Kreinick <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent 489245e commit 357a862

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dashboard/builders.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ var Hosts = map[string]*HostConfig{
237237
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-go1_12.tar.gz",
238238
Notes: "OpenBSD 6.8 (with 009_exit syspatch); GCE VM is built from script in build/env/openbsd-386",
239239
SSHUsername: "gopher",
240+
DeleteTimeout: 45 * time.Minute, // See golang/go#49666.
240241
},
241242
"host-openbsd-amd64-70": &HostConfig{
242243
VMImage: "openbsd-amd64-70",
@@ -253,6 +254,7 @@ var Hosts = map[string]*HostConfig{
253254
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-go1_12.tar.gz",
254255
Notes: "OpenBSD 7.0; GCE VM is built from script in build/env/openbsd-386. n2-highcpu host.",
255256
SSHUsername: "gopher",
257+
DeleteTimeout: 45 * time.Minute, // See golang/go#49666.
256258
},
257259
"host-openbsd-386-70-n2d": &HostConfig{
258260
// This host config is only for the runtime team to use investigating golang/go#49209.

0 commit comments

Comments
 (0)