Skip to content

Commit 7c9f64d

Browse files
committed
dashboard: add netbsd-arm64-bsiegert builder (reverse)
Update golang/go#34036 Change-Id: Ic92093e764fa163d97a2f125a4534581adf217da Reviewed-on: https://go-review.googlesource.com/c/build/+/249137 Reviewed-by: Dmitri Shuralyov <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 148ff27 commit 7c9f64d

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

dashboard/builders.go

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import (
2525
// syntax entirely. This is a first draft.
2626
var slowBotAliases = map[string]string{
2727
// Known missing builders:
28-
"netbsd-arm64": "",
2928
"openbsd-arm": "",
3029
"openbsd-arm64": "",
3130
"nacl-arm": "",
@@ -80,6 +79,7 @@ var slowBotAliases = map[string]string{
8079
"netbsd-386": "netbsd-386-9_0",
8180
"netbsd-amd64": "netbsd-amd64-9_0",
8281
"netbsd-arm": "netbsd-arm-bsiegert",
82+
"netbsd-arm64": "netbsd-arm64-bsiegert",
8383
"openbsd": "openbsd-amd64-64",
8484
"openbsd-386": "openbsd-386-64",
8585
"openbsd-amd64": "openbsd-amd64-64",
@@ -318,6 +318,12 @@ var Hosts = map[string]*HostConfig{
318318
env: []string{"GOROOT_BOOTSTRAP=/usr/pkg/go112"},
319319
OwnerGithub: "bsiegert",
320320
},
321+
"host-netbsd-arm64-bsiegert": &HostConfig{
322+
IsReverse: true,
323+
ExpectNum: 1,
324+
env: []string{"GOROOT_BOOTSTRAP=/usr/pkg/go114"},
325+
OwnerGithub: "bsiegert",
326+
},
321327
"host-dragonfly-amd64-5_8": &HostConfig{
322328
IsReverse: true,
323329
ExpectNum: 1,
@@ -1929,6 +1935,16 @@ func init() {
19291935
"GO_TEST_TIMEOUT_SCALE=10",
19301936
},
19311937
})
1938+
addBuilder(BuildConfig{
1939+
Name: "netbsd-arm64-bsiegert",
1940+
HostType: "host-netbsd-arm64-bsiegert",
1941+
distTestAdjust: noTestDirAndNoReboot,
1942+
tryBot: nil,
1943+
env: []string{
1944+
// The machine is slow.
1945+
"GO_TEST_TIMEOUT_SCALE=10",
1946+
},
1947+
})
19321948
addBuilder(BuildConfig{
19331949
Name: "plan9-386",
19341950
HostType: "host-plan9-386-gce",

0 commit comments

Comments
 (0)