Skip to content

Commit

Permalink
dashboard: disable pkgsite on plan9 builders
Browse files Browse the repository at this point in the history
Pkgsite depends on github.com/lib/pq for its database driver. pq is
broken on plan9. I've sent a pull request to fix them but it seems
like it will be a while until it's looked at. Disable the builders for
now.

For golang/go#61209

Change-Id: I1fba995662cc0b1756ac00b9de11d264412f2f79
Reviewed-on: https://go-review.googlesource.com/c/build/+/508864
Run-TryBot: Michael Matloob <matloob@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
  • Loading branch information
matloob committed Jul 12, 2023
1 parent 60cba8a commit 343d9c6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -3527,6 +3527,9 @@ func plan9Default(repo, branch, goBranch string) bool {
case "vulndb", "vuln":
// vulncheck can't read plan9 binaries.
return false
case "pkgsite":
// pkgsite has a dependency (github.com/lib/pq) that is broken on Plan 9.
return false
default:
return onlyMasterDefault(repo, branch, goBranch)
}
Expand Down

0 comments on commit 343d9c6

Please sign in to comment.