Skip to content

Commit 6a8b9e1

Browse files
committed
dashboard: reduce the amount of work for openbsd/arm
Given the performance of this hardware, reduce the amount of work that it is trying to do. Updates golang/go#25498 Change-Id: I943ab2b01bd10c5217c097464d3904b0f4de2d0a Reviewed-on: https://go-review.googlesource.com/c/build/+/228597 Reviewed-by: Dmitri Shuralyov <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 455db85 commit 6a8b9e1

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

dashboard/builders.go

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1933,9 +1933,17 @@ func init() {
19331933
distTestAdjust: noTestDirAndNoReboot,
19341934
})
19351935
addBuilder(BuildConfig{
1936-
Name: "openbsd-arm-jsing",
1937-
HostType: "host-openbsd-arm-joelsing",
1938-
SkipSnapshot: true,
1936+
Name: "openbsd-arm-jsing",
1937+
HostType: "host-openbsd-arm-joelsing",
1938+
SkipSnapshot: true,
1939+
buildsRepo: func(repo, branch, goBranch string) bool {
1940+
switch repo {
1941+
case "go", "net", "sys":
1942+
return branch == "master" && goBranch == "master"
1943+
default:
1944+
return false
1945+
}
1946+
},
19391947
distTestAdjust: noTestDirAndNoReboot,
19401948
tryBot: nil,
19411949
env: []string{

0 commit comments

Comments
 (0)