Skip to content

Commit fcc5f00

Browse files
committed
Split style gate into javac and ecj
1 parent 86d5638 commit fcc5f00

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

ci.jsonnet

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,6 @@
137137
// gates
138138
// -----------------------------------------------------------------------------------------------------------------
139139
local gate_task_dict = {
140-
"build": gpgate + platform_spec(no_jobs) + platform_spec({
141-
"linux:amd64:jdk-latest" : tier1 + provide(GPY_JVM_STANDALONE),
142-
}),
143140
"python-unittest": gpgate + platform_spec(no_jobs) + platform_spec({
144141
"linux:amd64:jdk21" : daily + t("01:00:00") + provide(GPY_JVM21_STANDALONE),
145142
"linux:aarch64:jdk21" : daily + t("02:00:00") + provide(GPY_JVM21_STANDALONE),
@@ -333,15 +330,18 @@
333330
# JDK, but there is nothing we can do about that.
334331
"linux:amd64:jdk-latest" : on_demand + t("20:00:00"),
335332
}),
336-
"style": style_gate + platform_spec(no_jobs) + platform_spec({
333+
"style": style_gate + task_spec({ tags:: "style,build,python-license" }) + platform_spec(no_jobs) + platform_spec({
334+
"linux:amd64:jdk-latest" : tier1 + provide(GPY_JVM_STANDALONE),
335+
}),
336+
"style-ecj": style_gate + task_spec({ tags:: "style,ecjbuild" }) + platform_spec(no_jobs) + platform_spec({
337337
"linux:amd64:jdk-latest" : tier1,
338338
}),
339339
// tests with sandboxed backends for various modules (posix, sha3, ctypes, ...)
340340
"python-unittest-sandboxed": gpgate_ee + platform_spec(no_jobs) + platform_spec({
341341
"linux:amd64:jdk-latest" : tier3,
342342
}),
343-
"python-svm-unittest-sandboxed": gpgate_ee + provide(GPYEE_NATIVE_STANDALONE) + platform_spec(no_jobs) + platform_spec({
344-
"linux:amd64:jdk-latest" : tier3,
343+
"python-svm-unittest-sandboxed": gpgate_ee + platform_spec(no_jobs) + platform_spec({
344+
"linux:amd64:jdk-latest" : tier3 + provide(GPYEE_NATIVE_STANDALONE),
345345
}),
346346
"tox-example": gpgate_ee + require(GPYEE_NATIVE_STANDALONE) + platform_spec(no_jobs) + platform_spec({
347347
"linux:amd64:jdk-latest" : tier3,

ci/python-gate.libsonnet

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -573,9 +573,7 @@
573573
"pip:pylint": "==2.4.4",
574574
}
575575
}),
576-
style_gate:: base_style_gate + task_spec({
577-
tags +:: ",fullbuild,python-license",
578-
}),
576+
style_gate:: base_style_gate,
579577
}
580578

581579
// Local Variables:

0 commit comments

Comments
 (0)