We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0008c96 commit 2851c36Copy full SHA for 2851c36
dashboard/builders.go
@@ -1072,6 +1072,17 @@ func init() {
1072
// Not worth it. And broken.
1073
return false
1074
}
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
1085
1086
return true
1087
},
1088
})
0 commit comments