We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 455db85 commit 6a8b9e1Copy full SHA for 6a8b9e1
dashboard/builders.go
@@ -1933,9 +1933,17 @@ func init() {
1933
distTestAdjust: noTestDirAndNoReboot,
1934
})
1935
addBuilder(BuildConfig{
1936
- Name: "openbsd-arm-jsing",
1937
- HostType: "host-openbsd-arm-joelsing",
1938
- SkipSnapshot: true,
+ Name: "openbsd-arm-jsing",
+ HostType: "host-openbsd-arm-joelsing",
+ 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
+ },
1947
1948
tryBot: nil,
1949
env: []string{
0 commit comments