diff --git a/dashboard/builders.go b/dashboard/builders.go index d7ef5cc1aa..c3ad763d29 100644 --- a/dashboard/builders.go +++ b/dashboard/builders.go @@ -255,6 +255,22 @@ var Hosts = map[string]*HostConfig{ Notes: "OpenBSD 6.4; GCE VM is built from script in build/env/openbsd-386", SSHUsername: "gopher", }, + "host-openbsd-amd64-68": &HostConfig{ + VMImage: "openbsd-amd64-68", + machineType: "n1-highcpu-4", + buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.openbsd-amd64", + goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-amd64-go1_12.tar.gz", + Notes: "OpenBSD 6.8; GCE VM is built from script in build/env/openbsd-amd64", + SSHUsername: "gopher", + }, + "host-openbsd-386-68": &HostConfig{ + VMImage: "openbsd-386-68", + machineType: "n1-highcpu-4", + buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.openbsd-386", + goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-go1_12.tar.gz", + Notes: "OpenBSD 6.8; GCE VM is built from script in build/env/openbsd-386", + SSHUsername: "gopher", + }, "host-openbsd-arm-joelsing": &HostConfig{ IsReverse: true, ExpectNum: 1, @@ -1945,6 +1961,18 @@ func init() { tryBot: explicitTrySet("sys"), distTestAdjust: noTestDirAndNoReboot, }) + addBuilder(BuildConfig{ + Name: "openbsd-amd64-68", + HostType: "host-openbsd-amd64-68", + distTestAdjust: noTestDirAndNoReboot, + KnownIssue: 35712, + }) + addBuilder(BuildConfig{ + Name: "openbsd-386-68", + HostType: "host-openbsd-386-68", + distTestAdjust: noTestDirAndNoReboot, + KnownIssue: 35712, + }) addBuilder(BuildConfig{ Name: "openbsd-arm-jsing", HostType: "host-openbsd-arm-joelsing",