Skip to content

Commit

Permalink
dashboard: reduce the amount of work for openbsd/arm
Browse files Browse the repository at this point in the history
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 <dmitshur@golang.org>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
  • Loading branch information
4a6f656c committed Apr 16, 2020
1 parent 455db85 commit 6a8b9e1
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -1933,9 +1933,17 @@ func init() {
distTestAdjust: noTestDirAndNoReboot,
})
addBuilder(BuildConfig{
Name: "openbsd-arm-jsing",
HostType: "host-openbsd-arm-joelsing",
SkipSnapshot: true,
Name: "openbsd-arm-jsing",
HostType: "host-openbsd-arm-joelsing",
SkipSnapshot: true,
buildsRepo: func(repo, branch, goBranch string) bool {
switch repo {
case "go", "net", "sys":
return branch == "master" && goBranch == "master"
default:
return false
}
},
distTestAdjust: noTestDirAndNoReboot,
tryBot: nil,
env: []string{
Expand Down

0 comments on commit 6a8b9e1

Please sign in to comment.