Skip to content

Commit 75c869d

Browse files
committed
Run Sulong coverage jobs with a GraalVM JDK 21 as base JDK.
1 parent cd96d64 commit 75c869d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

sulong/ci/ci.jsonnet

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ local sc = (import "ci_common/sulong-common.jsonnet");
120120
coverage_builds::
121121
sc.mapPrototypePlatformName([sc.weekly + $.sulong + sc.coverage($.regular_builds)],
122122
[
123-
[sc.linux_amd64, [sc.labsjdk21]],
124-
[sc.darwin_amd64, [sc.labsjdk21]],
125-
[sc.windows_amd64, [sc.labsjdk21]],
126-
[sc.linux_aarch64, [sc.labsjdk21]],
127-
[sc.darwin_aarch64, [sc.labsjdk21]],
123+
[sc.linux_amd64, [sc.graalvmee21]],
124+
[sc.darwin_amd64, [sc.graalvmee21]],
125+
[sc.windows_amd64, [sc.graalvmee21]],
126+
[sc.linux_aarch64, [sc.graalvmee21]],
127+
[sc.darwin_aarch64, [sc.graalvmee21]],
128128
],
129129
[
130130
{ name: "weekly-sulong-coverage-jdk21-linux-amd64", timelimit: "2:00:00" },

sulong/ci/ci_common/sulong-common.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ local sulong_deps = common.deps.sulong;
166166
skipPlatform:: coverageTags == [],
167167
gateTags:: ["build"] + coverageTags,
168168
# The Jacoco annotations interfere with partial evaluation. Use the DefaultTruffleRuntime to disable compilation just for the coverage runs.
169-
extra_mx_args+: ["--no-jacoco-exclude-truffle", "-J-Dtruffle.TruffleRuntime=com.oracle.truffle.api.impl.DefaultTruffleRuntime", "-J-Dpolyglot.engine.WarnInterpreterOnly=false"],
169+
extra_mx_args+: ["-J-Dtruffle.TruffleRuntime=com.oracle.truffle.api.impl.DefaultTruffleRuntime", "-J-Dpolyglot.engine.WarnInterpreterOnly=false"],
170170
extra_gate_args+: ["--jacoco-relativize-paths", "--jacoco-omit-src-gen", "--jacocout", "coverage", "--jacoco-format", "lcov"],
171171
teardown+: [
172172
["mx", "sversions", "--print-repositories", "--json", "|", "coverage-uploader.py", "--associated-repos", "-"],

0 commit comments

Comments
 (0)