Skip to content

Commit 2851c36

Browse files
committed
dashboard: skip some slow/broken tests on arm5 builder
Updates golang/go#24754 Change-Id: Ie5e94a8fd0b76e6394249a734d8fc1a61650dbad Reviewed-on: https://go-review.googlesource.com/106118 Reviewed-by: Daniel Martí <[email protected]>
1 parent 0008c96 commit 2851c36

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

dashboard/builders.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,6 +1072,17 @@ func init() {
10721072
// Not worth it. And broken.
10731073
return false
10741074
}
1075+
if distTest == "api" {
1076+
// Broken on this build config (Issue
1077+
// 24754), and not worth it on slow
1078+
// builder. It's covered by other
1079+
// builders anyway.
1080+
return false
1081+
}
1082+
if strings.HasPrefix(distTest, "test:") {
1083+
// Slow, and not worth it on slow builder.
1084+
return false
1085+
}
10751086
return true
10761087
},
10771088
})

0 commit comments

Comments
 (0)