Skip to content

Commit 343d9c6

Browse files
committed
dashboard: disable pkgsite on plan9 builders
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 <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Cherry Mui <[email protected]>
1 parent 60cba8a commit 343d9c6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dashboard/builders.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3527,6 +3527,9 @@ func plan9Default(repo, branch, goBranch string) bool {
35273527
case "vulndb", "vuln":
35283528
// vulncheck can't read plan9 binaries.
35293529
return false
3530+
case "pkgsite":
3531+
// pkgsite has a dependency (github.com/lib/pq) that is broken on Plan 9.
3532+
return false
35303533
default:
35313534
return onlyMasterDefault(repo, branch, goBranch)
35323535
}

0 commit comments

Comments
 (0)