Skip to content

Commit

Permalink
dashboard: reenable pkgsite on AIX builders
Browse files Browse the repository at this point in the history
We disabled pkgsite on the AIX builders because two of its
dependencies, on github.com/go-git/go-git/v5 and
github.com/go-git/go-billy/v5 are broken on AIX. But those
dependencies were removed in CL 510415, so pkgsite should be good to
run on AIX.

For golang/go#61341

Change-Id: Icb03ca532cdb08b6dd12ba5fa2c64b63cbfdfdb0
Reviewed-on: https://go-review.googlesource.com/c/build/+/524935
TryBot-Result: Gopher Robot <[email protected]>
Reviewed-by: Bryan Mills <[email protected]>
LUCI-TryBot-Result: Go LUCI <[email protected]>
Run-TryBot: Michael Matloob <[email protected]>
  • Loading branch information
matloob committed Sep 1, 2023
1 parent 5d89b9d commit b268245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -1546,7 +1546,7 @@ func miscCompileBuildSet(goos, goarch string) func(proj, branch, goBranch string
// given the nature of the repository. Leave this as a blanket policy for now.
return false
case "pkgsite": // #61341
return goos != "plan9" && goos != "aix" && goos != "wasip1"
return goos != "plan9" && goos != "wasip1"
case "vuln":
// Failure to build because of a dependency not supported on plan9.
return goos != "plan9"
Expand Down

0 comments on commit b268245

Please sign in to comment.