Skip to content

Commit 9862752

Browse files
committed
dashboard: allow 60 minutes for 386 OpenBSD builds
Either 45 minutes wasn't enough, or these things are hanging forever. Give them even more time so we can figure out which. For golang/go#49666. Change-Id: Ia8da50f06d828d508226bf01a3d53e5790a648e6 Reviewed-on: https://go-review.googlesource.com/c/build/+/384294 Trust: Heschi Kreinick <[email protected]> Run-TryBot: Heschi Kreinick <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent 61db2df commit 9862752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dashboard/builders.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +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.
240+
DeleteTimeout: 60 * time.Minute, // See golang/go#49666.
241241
},
242242
"host-openbsd-amd64-70": &HostConfig{
243243
VMImage: "openbsd-amd64-70",
@@ -254,7 +254,7 @@ var Hosts = map[string]*HostConfig{
254254
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-go1_12.tar.gz",
255255
Notes: "OpenBSD 7.0; GCE VM is built from script in build/env/openbsd-386. n2-highcpu host.",
256256
SSHUsername: "gopher",
257-
DeleteTimeout: 45 * time.Minute, // See golang/go#49666.
257+
DeleteTimeout: 60 * time.Minute, // See golang/go#49666.
258258
},
259259
"host-openbsd-386-70-n2d": &HostConfig{
260260
// This host config is only for the runtime team to use investigating golang/go#49209.

0 commit comments

Comments
 (0)