dashboard: don't test-compile mips32 yet

Change-Id: Id24f8dce9fcadb91747a97d6db17c90bd61ecbb4
Reviewed-on: https://go-review.googlesource.com/33155
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/dashboard/builders.go b/dashboard/builders.go
index 1b95cee..13a9b59 100644
--- a/dashboard/builders.go
+++ b/dashboard/builders.go
@@ -637,7 +637,9 @@
 			},
 		})
 	}
-	addMiscCompile("", "^(linux-arm64|linux-mips.*|nacl-arm|solaris-amd64|freebsd-arm|darwin-386)$")
+	addMiscCompile("", "^(linux-arm64|linux-mips64.*|nacl-arm|solaris-amd64|freebsd-arm|darwin-386)$")
+	// TODO(bradfitz): add linux-mips* (or just make a "-mips" suffix builder) to add 32-bit
+	// mips, once that port is finished.
 	addMiscCompile("-ppc", "^(linux-ppc64|linux-ppc64le)$")
 	addMiscCompile("-netbsd", "^netbsd-")
 	addMiscCompile("-plan9", "^plan9-")