repos: make blog and tour repos less prominent

The x/blog and x/tour repositories have been merged into x/website.

Stop displaying x/blog on the build dashboard, especially because
there are 0 Go packages in it, which the build dashboard shows in
red. (Keep TryBots enabled in case a CL is sent with new Go code.)

Remove their descriptions since neither is worth including in the
list at https://golang.org/pkg/#subrepo. Show x/website instead.

Change-Id: Idc2bcec17b6bed9929c3a37f2c45ae524559d37f
Reviewed-on: https://go-review.googlesource.com/c/build/+/324609
Trust: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
Dmitri Shuralyov 2021-06-02 19:29:35 -04:00
Родитель 10d5d32f2c
Коммит 8adac88dfe
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -60,7 +60,7 @@ func init() {
x("arch")
x("benchmarks", desc("benchmarks to measure Go as it is developed"))
x("blog", desc("blog.golang.org's implementation"))
x("blog", noDash)
x("build", desc("build.golang.org's implementation"))
x("crypto", desc("additional cryptography packages"))
x("debug", desc("an experimental debugger for Go"))
@ -84,10 +84,10 @@ func init() {
x("text", desc("packages for working with text"))
x("time", desc("additional time packages"))
x("tools", desc("godoc, goimports, gorename, and other tools"))
x("tour", noDash, desc("tour.golang.org's implementation"))
x("tour", noDash)
x("vgo", noDash)
x("vulndb", desc("the Go Vulnerability Database and packages for working with it"))
x("website")
x("website", desc("home of the golang.org and go.dev websites"))
x("xerrors", noDash)
add(&Repo{GoGerritProject: "gollvm"})