Skip to content

Commit 7c638f1

Browse files
committed
repos: enable build of x/pkgsite
Updates golang/go#59347 Change-Id: I7760607a57b5073730ec3627f15ddde2cc15d244 Reviewed-on: https://go-review.googlesource.com/c/build/+/506875 TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent c4d98ae commit 7c638f1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

repos/repos.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func init() {
8080
x("net", desc("additional networking packages"))
8181
x("oauth2")
8282
x("perf", desc("packages and tools for performance measurement, storage, and analysis"))
83-
x("pkgsite", desc("home of the pkg.go.dev website"), noBuildAndNoDash, enableCSR("go-discovery"))
83+
x("pkgsite", desc("home of the pkg.go.dev website"), enableCSR("go-discovery"))
8484
x("pkgsite-metrics", desc("code for serving pkg.go.dev/metrics"), enableCSR("go-ecosystem"))
8585
x("playground", noDash, enableCSR("golang-org"))
8686
x("review", desc("a tool for working with Gerrit code reviews"))
@@ -125,8 +125,6 @@ type modifyRepo func(*Repo)
125125
// the https://build.golang.org/ dashboard.
126126
func noDash(r *Repo) { r.showOnDashboard = false }
127127

128-
func noBuildAndNoDash(r *Repo) { r.CoordinatorCanBuild, r.showOnDashboard = false, false }
129-
130128
func coordinatorCanBuild(r *Repo) { r.CoordinatorCanBuild = true }
131129

132130
func archivedOnGitHub(r *Repo) {

0 commit comments

Comments
 (0)