Skip to content

Commit 95e3d25

Browse files
committed
Move regex gates to tiers.
1 parent 9b63229 commit 95e3d25

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

regex/ci/ci.jsonnet

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@
1313
local regex_gate = regex_common + common.deps.eclipse + common.deps.jdt + common.deps.spotbugs + {
1414
name: 'gate-regex-' + self.jdk_name,
1515
run: [["mx", "--strict-compliance", "gate", "--strict-mode"]],
16-
targets: ["gate"],
1716
},
1817

19-
local regex_gate_lite = regex_common + galahad.exclude {
18+
local regex_gate_lite = regex_common + galahad.exclude + {
2019
name: 'weekly-regex-mac-lite-' + self.jdk_name,
2120
run: [
2221
["mx", "build"],
2322
["mx", "unittest", "--verbose", "com.oracle.truffle.regex"],
2423
],
2524
notify_groups:: ["regex"],
26-
targets: ["weekly"],
2725
},
2826

2927
local regex_downstream_js = regex_common + {
@@ -38,7 +36,6 @@
3836
["mx", "sversions"],
3937
["mx", "gate", "--no-warning-as-error", "--all-suites", "--tags", "build,Test262-default,TestV8-default,regex"],
4038
],
41-
targets: ["gate"],
4239
},
4340

4441
local regex_coverage = regex_common + {
@@ -56,9 +53,9 @@
5653

5754
local _builds = [utils.add_gate_predicate(b, ["sdk", "truffle", "regex", "compiler", "vm", "substratevm"]) for b in std.flattenArrays([
5855
[
59-
common.linux_amd64 + jdk + regex_gate,
60-
common.linux_amd64 + jdk + regex_downstream_js,
61-
common.darwin_aarch64 + jdk + regex_gate_lite,
56+
common.linux_amd64 + jdk + common.tier1 + regex_gate,
57+
common.linux_amd64 + jdk + common.tier3 + regex_downstream_js,
58+
common.darwin_aarch64 + jdk + common.weekly + regex_gate_lite,
6259
] for jdk in [
6360
common.labsjdkLatest,
6461
]

0 commit comments

Comments
 (0)