Skip to content

Commit c5b0bb2

Browse files
n2vicagedmantis
authored andcommitted
build/dashboard: add openbsd-ppc64
Updates golang/go#56001. Change-Id: I21f506967591d24d361cf7cf1e200980d4d3c49d Reviewed-on: https://go-review.googlesource.com/c/build/+/473576 Reviewed-by: Joel Sing <[email protected]> Run-TryBot: Joel Sing <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Heschi Kreinick <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent 65cc91d commit c5b0bb2

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

dashboard/builders.go

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ var slowBotAliases = map[string]string{
8484
"openbsd-arm": "openbsd-arm-jsing",
8585
"openbsd-arm64": "openbsd-arm64-jsing",
8686
"openbsd-mips64": "openbsd-mips64-jsing",
87+
"openbsd-ppc64": "openbsd-ppc64-n2vi",
8788
"plan9": "plan9-arm",
8889
"plan9-386": "plan9-386-0intro",
8990
"plan9-amd64": "plan9-amd64-0intro",
@@ -483,6 +484,16 @@ var Hosts = map[string]*HostConfig{
483484
Owners: []*gophers.Person{gh("4a6f656c")},
484485
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
485486
},
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+
},
486497
"host-plan9-386-0intro": {
487498
IsReverse: true,
488499
ExpectNum: 1,
@@ -2084,6 +2095,22 @@ func init() {
20842095
"GO_TEST_TIMEOUT_SCALE=5",
20852096
},
20862097
})
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+
})
20872114
addBuilder(BuildConfig{
20882115
Name: "netbsd-386-9_3",
20892116
HostType: "host-netbsd-386-9_3",

internal/gophers/gophers.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -978,6 +978,7 @@ func init() {
978978
addPerson("Eric Dube", "[email protected]")
979979
addPerson("Eric Engestrom", "[email protected]", "@1ace")
980980
addPerson("Eric Garrido", "[email protected]", "@minusnine")
981+
addPerson("Eric Grosse", "[email protected]", "@n2vi")
981982
addPerson("Eric Hopper", "[email protected]")
982983
addPerson("Eric Koleda", "[email protected]")
983984
addPerson("Eric Lagergren", "[email protected]", "@ericlagergren")

0 commit comments

Comments
 (0)