Skip to content

Commit 3a574da

Browse files
committed
dashboard: add OpenBSD 6.8 builders
This change builds on top of CL 268297, using the updated env script to build OpenBSD 6.8 images, and adding new builders that use them. This has been tested with cmd/debugnewvm on a recent Go tip commit, as well as Go 1.15.4 and 1.14.11 commits. It passed, although there were also some failures seen. Once the builder is added, we'll know the test results for a wider set of commits, and can decide how to proceed from there. Minimize the configuration to a bare minimum. Specifically, remove MinCPUPlatform since setting it "Intel Skylake" was found not to have a noticeable effect on the speed of the build compared to the zero value: # With MinCPUPlatform = "Intel Skylake": $ time debugnewvm -run-build=openbsd-amd64-68 -rev=go1.15.4 [...] real 17m8.308s # With a zero MinCPUPlatform value: $ time debugnewvm -run-build=openbsd-amd64-68 -rev=go1.15.4 [...] real 16m28.518s For golang/go#35712. Updates golang/go#42426. Change-Id: I517a85738a034a3a4074488ccecd4408a91a4a07 Reviewed-on: https://go-review.googlesource.com/c/build/+/269577 Trust: Dmitri Shuralyov <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent 5f7fe5e commit 3a574da

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

dashboard/builders.go

+28
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,22 @@ var Hosts = map[string]*HostConfig{
255255
Notes: "OpenBSD 6.4; GCE VM is built from script in build/env/openbsd-386",
256256
SSHUsername: "gopher",
257257
},
258+
"host-openbsd-amd64-68": &HostConfig{
259+
VMImage: "openbsd-amd64-68",
260+
machineType: "n1-highcpu-4",
261+
buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.openbsd-amd64",
262+
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-amd64-go1_12.tar.gz",
263+
Notes: "OpenBSD 6.8; GCE VM is built from script in build/env/openbsd-amd64",
264+
SSHUsername: "gopher",
265+
},
266+
"host-openbsd-386-68": &HostConfig{
267+
VMImage: "openbsd-386-68",
268+
machineType: "n1-highcpu-4",
269+
buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.openbsd-386",
270+
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-go1_12.tar.gz",
271+
Notes: "OpenBSD 6.8; GCE VM is built from script in build/env/openbsd-386",
272+
SSHUsername: "gopher",
273+
},
258274
"host-openbsd-arm-joelsing": &HostConfig{
259275
IsReverse: true,
260276
ExpectNum: 1,
@@ -1945,6 +1961,18 @@ func init() {
19451961
tryBot: explicitTrySet("sys"),
19461962
distTestAdjust: noTestDirAndNoReboot,
19471963
})
1964+
addBuilder(BuildConfig{
1965+
Name: "openbsd-amd64-68",
1966+
HostType: "host-openbsd-amd64-68",
1967+
distTestAdjust: noTestDirAndNoReboot,
1968+
KnownIssue: 35712,
1969+
})
1970+
addBuilder(BuildConfig{
1971+
Name: "openbsd-386-68",
1972+
HostType: "host-openbsd-386-68",
1973+
distTestAdjust: noTestDirAndNoReboot,
1974+
KnownIssue: 35712,
1975+
})
19481976
addBuilder(BuildConfig{
19491977
Name: "openbsd-arm-jsing",
19501978
HostType: "host-openbsd-arm-joelsing",

0 commit comments

Comments
 (0)