Commit 08d66439 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

builder: label the race builder as "race"

R=golang-dev, adg, dave, rsc, minux.ma, dvyukov
CC=golang-dev
https://golang.org/cl/6648043
parent 15970c8d
......@@ -211,6 +211,9 @@ 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" {
return "race"
}
arch := builderArch(s)
switch arch {
case "amd64":
......
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