Skip to content

Commit 7373b40

Browse files
0introbradfitz
authored andcommitted
dashboard: add plan9-386-0intro builder
This change adds the plan9-386-0intro builder configuration. Updates golang/go#29801. Change-Id: I5f64f4592a499eb1691498805fd0dfa5082c33d5 Reviewed-on: https://go-review.googlesource.com/c/build/+/175901 Run-TryBot: David du Colombier <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 23aab57 commit 7373b40

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

dashboard/builders.go

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,11 @@ var Hosts = map[string]*HostConfig{
282282
ExpectNum: 1,
283283
OwnerGithub: "0intro",
284284
},
285+
"host-plan9-386-0intro": &HostConfig{
286+
IsReverse: true,
287+
ExpectNum: 1,
288+
OwnerGithub: "0intro",
289+
},
285290
"host-plan9-386-gce": &HostConfig{
286291
VMImage: "plan9-386-v7",
287292
Notes: "Plan 9 from 0intro; GCE VM is built from script in build/env/plan9-386",
@@ -2195,6 +2200,23 @@ func init() {
21952200
},
21962201
buildsRepo: onlyMaster,
21972202
})
2203+
addBuilder(BuildConfig{
2204+
Name: "plan9-386-0intro",
2205+
HostType: "host-plan9-386-0intro",
2206+
SkipSnapshot: true,
2207+
shouldRunDistTest: func(distTestName string, isTry bool) bool {
2208+
if !noTestDir(distTestName, isTry) {
2209+
return false
2210+
}
2211+
switch distTestName {
2212+
case "api",
2213+
"go_test:cmd/go": // takes over 20 minutes without working SMP
2214+
return false
2215+
}
2216+
return true
2217+
},
2218+
buildsRepo: onlyMaster,
2219+
})
21982220
addBuilder(BuildConfig{
21992221
Name: "aix-ppc64",
22002222
HostType: "host-aix-ppc64-osuosl",

0 commit comments

Comments
 (0)