Commit c589b9ec authored by Jordan Rhee's avatar Jordan Rhee Committed by Brad Fitzpatrick

cmd/vet: exclude windows/arm from cmd/vet

Updates #27103

Change-Id: I1f7d198879e5912661e4156a86e13de2698a5473
Reviewed-on: https://go-review.googlesource.com/130055Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent e8f49aa8
......@@ -198,6 +198,12 @@ func (p platform) vet() {
return
}
if p.os == "windows" && p.arch == "arm" {
// TODO(jordanrh1): enable as soon as the windows/arm port has fully landed
fmt.Println("skipping windows/arm")
return
}
var buf bytes.Buffer
fmt.Fprintf(&buf, "go run main.go -p %s\n", p)
......
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