Revert "dashboard: limit telemetry builders"

This reverts commit e0d0a8242f58fa7afbc11be1fb7b2998f73dfcc9.

Reason for revert: We want to keep all builders active for x/telemetry. We can add workarounds instead.

Change-Id: Ib3bed9de818c6424f4d62bc0b00aa8e7a1776b6d
Reviewed-on: https://go-review.googlesource.com/c/build/+/495936
Reviewed-by: Heschi Kreinick <heschi@google.com>
Auto-Submit: Jamal Carvalho <jamal@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Jamal Carvalho <jamal@golang.org>
diff --git a/dashboard/builders.go b/dashboard/builders.go
index c523eb1..28f054b 100644
--- a/dashboard/builders.go
+++ b/dashboard/builders.go
@@ -1294,7 +1294,7 @@
 // we only run them on servers and don't need to test the
 // many different architectures that Go supports (like ios).
 func linuxAmd64Repos(repo, branch, goBranch string) bool {
-	if repo == "pkgsite-metrics" || repo == "telemetry" {
+	if repo == "pkgsite-metrics" {
 		return atLeastGo1(goBranch, 20)
 	}
 	return true
@@ -3469,7 +3469,7 @@
 // both filesystem-intensive and unlikely to be relevant to plan9 users.
 func plan9Default(repo, branch, goBranch string) bool {
 	switch repo {
-	case "benchmarks", "telemetry":
+	case "benchmarks":
 		// Failure to build because of a dependency not supported on plan9.
 		return false
 	case "review":