@@ -25,10 +25,8 @@ import (
25
25
// syntax entirely. This is a first draft.
26
26
var slowBotAliases = map [string ]string {
27
27
// 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.
32
30
33
31
"386" : "linux-386" ,
34
32
"aix" : "aix-ppc64" ,
@@ -78,6 +76,8 @@ var slowBotAliases = map[string]string{
78
76
"openbsd" : "openbsd-amd64-64" ,
79
77
"openbsd-386" : "openbsd-386-64" ,
80
78
"openbsd-amd64" : "openbsd-amd64-64" ,
79
+ "openbsd-arm" : "openbsd-arm-jsing" ,
80
+ "openbsd-arm64" : "openbsd-arm64-jsing" ,
81
81
"plan9" : "plan9-arm" ,
82
82
"plan9-386" : "plan9-386-0intro" ,
83
83
"plan9-amd64" : "plan9-amd64-9front" ,
@@ -251,6 +251,12 @@ var Hosts = map[string]*HostConfig{
251
251
env : []string {"GOROOT_BOOTSTRAP=/usr/local/go" },
252
252
OwnerGithub : "4a6f656c" ,
253
253
},
254
+ "host-openbsd-arm64-joelsing" : & HostConfig {
255
+ IsReverse : true ,
256
+ ExpectNum : 1 ,
257
+ env : []string {"GOROOT_BOOTSTRAP=/usr/local/go" },
258
+ OwnerGithub : "4a6f656c" ,
259
+ },
254
260
"host-freebsd-11_1" : & HostConfig {
255
261
VMImage : "freebsd-amd64-111-b" ,
256
262
Notes : "FreeBSD 11.1; GCE VM is built from script in build/env/freebsd-amd64" ,
@@ -1896,6 +1902,25 @@ func init() {
1896
1902
"GO_TEST_TIMEOUT_SCALE=5" ,
1897
1903
},
1898
1904
})
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
+ })
1899
1924
addBuilder (BuildConfig {
1900
1925
Name : "netbsd-amd64-9_0" ,
1901
1926
HostType : "host-netbsd-amd64-9_0" ,
0 commit comments