Skip to content

Commit f4c74b5

Browse files
committed
Move Web Image jobs to tiered system
1 parent 055819e commit f4c74b5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

web-image/ci/ci.jsonnet

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,19 @@ local mxgate(tags) = r.mxgate(tags, suite='web-image');
88
local platforms = r.platforms;
99
local t = r.t;
1010

11-
local gate = r.gate;
11+
local tier1 = r.tier1;
12+
local tier2 = r.tier2;
1213
local weekly = r.weekly;
1314

1415
{
1516
// THE TASK CONFIGURATION
1617
task_dict:: {
18+
// TODO GR-67831 Split into separate style and fullbuild jobs
1719
'style-fullbuild': mxgate('style,fullbuild,webimagehelp,webimageoptions') + t('30:00') + r.eclipse + r.jdt + r.spotbugs + r.prettier + platforms({
18-
'linux:amd64:jdk-latest': gate,
20+
'linux:amd64:jdk-latest': tier1,
1921
}),
2022
'unittest': mxgate('webimagebuild,webimageunittest') + t('30:00') + r.node22 + platforms({
21-
'linux:amd64:jdk-latest': gate,
23+
'linux:amd64:jdk-latest': tier2,
2224
}),
2325
},
2426
processed_tasks:: r.process(self.task_dict),

0 commit comments

Comments
 (0)