Skip to content

Commit b4d0fae

Browse files
committed
ci: add baseStyleGate
1 parent 8303d83 commit b4d0fae

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

ci_common/builder.libsonnet

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,17 @@ local mixins = import 'mixins.libsonnet';
6262
testGateTime(type, platform, timelimit)::
6363
baseGraalGate + {tags:: "python-"+type} + mixins.getPlatform(platform) + {name: "python-"+ type +"-"+platform} + {timelimit: timelimit},
6464

65-
local styleGate = baseGraalGate + mixins.eclipse + mixins.linux + {
66-
tags:: "style,fullbuild,python-license",
65+
local baseStyleGate = baseGraalGate + mixins.eclipse + mixins.linux + {
66+
tags:: "style",
6767
name: "python-style",
6868

6969
timelimit: const.TIME_LIMIT["1h"],
7070
},
71+
baseStyleGate:: baseStyleGate,
72+
73+
local styleGate = baseStyleGate + {
74+
tags:: super.tags + ",fullbuild,python-license",
75+
},
7176
styleGate:: styleGate,
7277

7378
local graalVmGate = baseGraalGate + mixins.linux {

0 commit comments

Comments
 (0)