Skip to content

Commit 17d0020

Browse files
committed
dashboard: skip known missing ios/arm64 builder
We are aware that a builder is missing, and have the tracking issue golang.org/issue/41610 for resolving that. Add a skip to the tests so that the build dashboard is green until the work of adding the builder is complete. For golang/go#41610. Change-Id: I69dbeb4c28d5567f24b4570f44715d8b5443365f Reviewed-on: https://go-review.googlesource.com/c/build/+/257117 Trust: Dmitri Shuralyov <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> TryBot-Result: Go Bot <[email protected]>
1 parent 442b1a7 commit 17d0020

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

dashboard/builders.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ var slowBotAliases = map[string]string{
2929
"openbsd-arm64": "",
3030
"nacl-arm": "",
3131
"darwin-arm": "", // TODO(golang.org/issue/37611): Remove once port is removed.
32+
"ios-arm64": "", // TODO(golang.org/issue/41610): Add builder for ios/arm64.
3233

3334
"386": "linux-386",
3435
"aix": "aix-ppc64",

dashboard/builders_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -790,6 +790,7 @@ func TestTryBotsCompileAllPorts(t *testing.T) {
790790
done["nacl-386"] = true // removed in Go 1.14
791791
done["nacl-arm"] = true // removed in Go 1.14
792792
done["windows-arm"] = true // TODO(golang.org/issue/38607) disabled until builder is replaced
793+
done["ios-arm64"] = true // TODO(golang.org/issue/41610): Add builder for ios/arm64.
793794
check := func(goos, goarch string) {
794795
if goos == "android" {
795796
// TODO(golang.org/issue/25963): support

0 commit comments

Comments
 (0)