Skip to content

Commit b91348e

Browse files
committed
dashboard: add openbsd-arm64-jsing builder (reverse)
Update golang/go#31656 Fixes golang/go#34035 Change-Id: I7e3d20be148ad5111efeb78702352da14274938e Reviewed-on: https://go-review.googlesource.com/c/build/+/250117 Trust: Joel Sing <[email protected]> Run-TryBot: Joel Sing <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent dc0a748 commit b91348e

File tree

1 file changed

+29
-4
lines changed

1 file changed

+29
-4
lines changed

dashboard/builders.go

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,8 @@ import (
2525
// syntax entirely. This is a first draft.
2626
var slowBotAliases = map[string]string{
2727
// Known missing builders:
28-
"openbsd-arm": "",
29-
"openbsd-arm64": "",
30-
"darwin-arm": "", // TODO(golang.org/issue/37611): Remove once port is removed.
31-
"darwin-arm64": "", // TODO(golang.org/issue/39782): Add builder for darwin/arm64.
28+
"darwin-arm": "", // TODO(golang.org/issue/37611): Remove once port is removed.
29+
"darwin-arm64": "", // TODO(golang.org/issue/39782): Add builder for darwin/arm64.
3230

3331
"386": "linux-386",
3432
"aix": "aix-ppc64",
@@ -78,6 +76,8 @@ var slowBotAliases = map[string]string{
7876
"openbsd": "openbsd-amd64-64",
7977
"openbsd-386": "openbsd-386-64",
8078
"openbsd-amd64": "openbsd-amd64-64",
79+
"openbsd-arm": "openbsd-arm-jsing",
80+
"openbsd-arm64": "openbsd-arm64-jsing",
8181
"plan9": "plan9-arm",
8282
"plan9-386": "plan9-386-0intro",
8383
"plan9-amd64": "plan9-amd64-9front",
@@ -251,6 +251,12 @@ var Hosts = map[string]*HostConfig{
251251
env: []string{"GOROOT_BOOTSTRAP=/usr/local/go"},
252252
OwnerGithub: "4a6f656c",
253253
},
254+
"host-openbsd-arm64-joelsing": &HostConfig{
255+
IsReverse: true,
256+
ExpectNum: 1,
257+
env: []string{"GOROOT_BOOTSTRAP=/usr/local/go"},
258+
OwnerGithub: "4a6f656c",
259+
},
254260
"host-freebsd-11_1": &HostConfig{
255261
VMImage: "freebsd-amd64-111-b",
256262
Notes: "FreeBSD 11.1; GCE VM is built from script in build/env/freebsd-amd64",
@@ -1896,6 +1902,25 @@ func init() {
18961902
"GO_TEST_TIMEOUT_SCALE=5",
18971903
},
18981904
})
1905+
addBuilder(BuildConfig{
1906+
Name: "openbsd-arm64-jsing",
1907+
HostType: "host-openbsd-arm64-joelsing",
1908+
SkipSnapshot: true,
1909+
buildsRepo: func(repo, branch, goBranch string) bool {
1910+
switch repo {
1911+
case "go", "net", "sys":
1912+
return branch == "master" && goBranch == "master"
1913+
default:
1914+
return false
1915+
}
1916+
},
1917+
distTestAdjust: noTestDirAndNoReboot,
1918+
tryBot: nil,
1919+
env: []string{
1920+
// The machine is slow.
1921+
"GO_TEST_TIMEOUT_SCALE=5",
1922+
},
1923+
})
18991924
addBuilder(BuildConfig{
19001925
Name: "netbsd-amd64-9_0",
19011926
HostType: "host-netbsd-amd64-9_0",

0 commit comments

Comments
 (0)