Skip to content

Commit 61e6a7f

Browse files
Bryan C. Millsgopherbot
Bryan C. Mills
authored andcommitted
dashboard: skip x/website on freebsd/riscv64
Updates golang/go#51800. Updates golang/go#57217. Change-Id: I9049457e8e69e4f6c35810998bbff2f8371078e1 Reviewed-on: https://go-review.googlesource.com/c/build/+/456655 Reviewed-by: Michael Pratt <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Auto-Submit: Bryan Mills <[email protected]> Run-TryBot: Bryan Mills <[email protected]>
1 parent 9892aff commit 61e6a7f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

dashboard/builders.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2886,6 +2886,17 @@ func init() {
28862886
if repo == "perf" {
28872887
return false
28882888
}
2889+
if repo == "website" {
2890+
// x/website is stuck on an old x/sys because it's stuck on an old Go
2891+
// runtime because it's stuck on AppEngine (#51800).
2892+
// The old x/sys doesn't support freebsd/riscv64 (#57217).
2893+
// The new one doesn't support Go 1.16.
2894+
// So we have to skip x/website until that whole mess is resolved.
2895+
//
2896+
// TODO(#51800, #57217): update the x/sys dependency in x/website and
2897+
// re-enable this repo.
2898+
return false
2899+
}
28892900
return onlyMasterDefault(repo, branch, goBranch)
28902901
},
28912902
})

0 commit comments

Comments
 (0)