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 9892aff commit 61e6a7fCopy full SHA for 61e6a7f
dashboard/builders.go
@@ -2886,6 +2886,17 @@ func init() {
2886
if repo == "perf" {
2887
return false
2888
}
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
+ }
2900
return onlyMasterDefault(repo, branch, goBranch)
2901
},
2902
})
0 commit comments