@@ -84,6 +84,7 @@ var slowBotAliases = map[string]string{
84
84
"openbsd-arm" : "openbsd-arm-jsing" ,
85
85
"openbsd-arm64" : "openbsd-arm64-jsing" ,
86
86
"openbsd-mips64" : "openbsd-mips64-jsing" ,
87
+ "openbsd-ppc64" : "openbsd-ppc64-n2vi" ,
87
88
"plan9" : "plan9-arm" ,
88
89
"plan9-386" : "plan9-386-0intro" ,
89
90
"plan9-amd64" : "plan9-amd64-0intro" ,
@@ -483,6 +484,16 @@ var Hosts = map[string]*HostConfig{
483
484
Owners : []* gophers.Person {gh ("4a6f656c" )},
484
485
GoBootstrap : "go1.19.2" , // Go 1.17 is too old; see go.dev/issue/42422
485
486
},
487
+ "host-openbsd-ppc64-n2vi" : {
488
+ IsReverse : true ,
489
+ ExpectNum : 1 ,
490
+ Owners : []* gophers.Person {gh ("n2vi" )},
491
+ Notes : "TalosII T2P9D01 (dual Power9 32GB) OpenBSD-current" ,
492
+ GoBootstrap : "none" ,
493
+ env : []string {
494
+ "GOROOT_BOOTSTRAP=/home/gopher/go-openbsd-ppc64-bootstrap" ,
495
+ },
496
+ },
486
497
"host-plan9-386-0intro" : {
487
498
IsReverse : true ,
488
499
ExpectNum : 1 ,
@@ -2084,6 +2095,22 @@ func init() {
2084
2095
"GO_TEST_TIMEOUT_SCALE=5" ,
2085
2096
},
2086
2097
})
2098
+ addBuilder (BuildConfig {
2099
+ Name : "openbsd-ppc64-n2vi" ,
2100
+ HostType : "host-openbsd-ppc64-n2vi" ,
2101
+ SkipSnapshot : true ,
2102
+ FlakyNet : true ,
2103
+ buildsRepo : func (repo , branch , goBranch string ) bool {
2104
+ switch repo {
2105
+ case "go" , "net" , "sys" :
2106
+ return branch == "master" && goBranch == "master"
2107
+ default :
2108
+ return false
2109
+ }
2110
+ },
2111
+ distTestAdjust : noTestDirAndNoReboot ,
2112
+ tryBot : nil ,
2113
+ })
2087
2114
addBuilder (BuildConfig {
2088
2115
Name : "netbsd-386-9_3" ,
2089
2116
HostType : "host-netbsd-386-9_3" ,
0 commit comments