dashboard: disable x/website tests on Android builders

They don't have filesystem access implemented, nor can they compile
Go code (as currently done in golangorg tests).

x/website is sufficiently tested on many other architectures, and
it's more of an internal repository without plans to support mobile.

Fixes golang/go#33935

Change-Id: I6e3d06a72aeb865b9532fcf2dc699d8f180c0c2e
Reviewed-on: https://go-review.googlesource.com/c/build/+/192318
Reviewed-by: Bryan C. Mills <bcmills@google.com>
diff --git a/dashboard/builders.go b/dashboard/builders.go
index 3050c17..3f6aaf0 100644
--- a/dashboard/builders.go
+++ b/dashboard/builders.go
@@ -1997,7 +1997,7 @@
 		Notes:    "Android emulator on GCE",
 		buildsRepo: func(repo, branch, goBranch string) bool {
 			switch repo {
-			case "blog", "talks", "review", "tour":
+			case "blog", "talks", "review", "tour", "website":
 				return false
 			}
 			return atLeastGo1(branch, 13) && atLeastGo1(goBranch, 13)
@@ -2024,7 +2024,7 @@
 		},
 		buildsRepo: func(repo, branch, goBranch string) bool {
 			switch repo {
-			case "blog", "talks", "review", "tour":
+			case "blog", "talks", "review", "tour", "website":
 				return false
 			}
 			return atLeastGo1(branch, 13) && atLeastGo1(goBranch, 13)
diff --git a/dashboard/builders_test.go b/dashboard/builders_test.go
index e525b69..38a5d01 100644
--- a/dashboard/builders_test.go
+++ b/dashboard/builders_test.go
@@ -295,6 +295,7 @@
 		{b("android-amd64-emu", "text"), both},
 		{b("android-amd64-emu", "time"), both},
 		{b("android-amd64-emu", "tools"), both},
+		{b("android-amd64-emu", "website"), none},
 
 		{b("android-386-emu", "go"), onlyPost},
 		{b("android-386-emu", "mobile"), onlyPost},