dashboard: build sub-repos on more builders Change-Id: I57c12f427448281d71b8507ed950038209134143 Reviewed-on: https://go-review.googlesource.com/10915 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/dashboard/builders.go b/dashboard/builders.go index 267cc48..178939e 100644 --- a/dashboard/builders.go +++ b/dashboard/builders.go
@@ -167,8 +167,18 @@ if !c.SplitMakeRun() { return false } - // TODO(adg,bradfitz): expand this - return c.Name == "linux-amd64" || c.Name == "windows-amd64-gce" + // TODO(adg,bradfitz): expand this as required + switch c.Name { + case "darwin-amd64-10_10", + "freebsd-386-gce101", "freebsd-amd64-gce101", + "linux-386", "linux-amd64", "linux-amd64-nocgo", + "openbsd-386-gce56", "openbsd-amd64-gce56", + "plan9-386", + "windows-386-gce", "windows-amd64-gce": + return true + default: + return false + } } // AllScriptArgs returns the set of arguments that should be passed to the