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 3a7ac76 commit 9892affCopy full SHA for 9892aff
dashboard/builders.go
@@ -2881,6 +2881,13 @@ func init() {
2881
distTestAdjust: riscvDistTestPolicy,
2882
privateGoProxy: true, // this builder is behind firewall
2883
SkipSnapshot: true, // The builder has a slow uplink bandwidth.
2884
+ buildsRepo: func(repo, branch, goBranch string) bool {
2885
+ // see https://go.dev/issue/53745
2886
+ if repo == "perf" {
2887
+ return false
2888
+ }
2889
+ return onlyMasterDefault(repo, branch, goBranch)
2890
+ },
2891
})
2892
addBuilder(BuildConfig{
2893
Name: "plan9-arm",
0 commit comments