Skip to content

Commit 9892aff

Browse files
Bryan C. Millsgopherbot
Bryan C. Mills
authored andcommitted
dashbord: restrict freebsd-riscv64-unmatched to the same repos as linux-riscv64-unmatched
Fixes golang/go#56273. Updates golang/go#53466. Change-Id: I6e796006f8f7120ae05d5e62cdbc7cdd9d146f7e Reviewed-on: https://go-review.googlesource.com/c/build/+/456575 Auto-Submit: Bryan Mills <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Michael Pratt <[email protected]> Run-TryBot: Bryan Mills <[email protected]>
1 parent 3a7ac76 commit 9892aff

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dashboard/builders.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2881,6 +2881,13 @@ func init() {
28812881
distTestAdjust: riscvDistTestPolicy,
28822882
privateGoProxy: true, // this builder is behind firewall
28832883
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+
},
28842891
})
28852892
addBuilder(BuildConfig{
28862893
Name: "plan9-arm",

0 commit comments

Comments
 (0)