Commit 15790204 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

misc/dashboard: show all race builders as "race"

race is more important than arch (moreover race implies x64)
don't know how to test it

R=golang-dev, dave, r
CC=golang-dev
https://golang.org/cl/10484046
parent be6556f7
......@@ -211,7 +211,7 @@ func builderArch(s string) string {
// builderArchShort returns a short arch tag for a builder string
func builderArchShort(s string) string {
if s == "linux-amd64-race" {
if strings.Contains(s+"-", "-race-") {
return "race"
}
arch := builderArch(s)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment