Skip to content

Commit

Permalink
dashboard: allow 60 minutes for 386 OpenBSD builds
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
heschi committed Feb 9, 2022
1 parent 61db2df commit 9862752
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ var Hosts = map[string]*HostConfig{
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-go1_12.tar.gz",
Notes: "OpenBSD 6.8 (with 009_exit syspatch); GCE VM is built from script in build/env/openbsd-386",
SSHUsername: "gopher",
DeleteTimeout: 45 * time.Minute, // See golang/go#49666.
DeleteTimeout: 60 * time.Minute, // See golang/go#49666.
},
"host-openbsd-amd64-70": &HostConfig{
VMImage: "openbsd-amd64-70",
Expand All @@ -254,7 +254,7 @@ var Hosts = map[string]*HostConfig{
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-go1_12.tar.gz",
Notes: "OpenBSD 7.0; GCE VM is built from script in build/env/openbsd-386. n2-highcpu host.",
SSHUsername: "gopher",
DeleteTimeout: 45 * time.Minute, // See golang/go#49666.
DeleteTimeout: 60 * time.Minute, // See golang/go#49666.
},
"host-openbsd-386-70-n2d": &HostConfig{
// This host config is only for the runtime team to use investigating golang/go#49209.
Expand Down

0 comments on commit 9862752

Please sign in to comment.