Skip to content

Commit 4b58402

Browse files
disable JVMCI version check
1 parent 77d1b2d commit 4b58402

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

ci.jsonnet

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,10 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
291291
timelimit: "1:30:00",
292292
logs: ["*.log"],
293293
targets: ["gate"],
294+
environment+: {
295+
# Disable JVMCI version check
296+
JVMCI_VERSION_CHECK: "ignore"
297+
},
294298
run+: if !fastdebug then [
295299
["mx", "--java-home=${JAVA_HOME}", "-p", "graal-enterprise/graal-enterprise", "gate", "--tags", "build,test,bootstraplite"]
296300
] else [
@@ -311,6 +315,10 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
311315
timelimit: "1:30:00",
312316
logs: ["*.log"],
313317
targets: ["gate"],
318+
environment+: {
319+
# Disable JVMCI version check
320+
JVMCI_VERSION_CHECK: "ignore"
321+
},
314322
run+: [
315323
# Build and test JavaScript on GraalVM
316324
jsvm + ["build"],
@@ -357,6 +365,9 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
357365
],
358366

359367
environment+: {
368+
# Disable JVMCI version check
369+
JVMCI_VERSION_CHECK: "ignore",
370+
360371
# The Truffle TCK tests run as a part of the Truffle TCK gate in the graal repo
361372
TEST_LIBGRAAL_EXCLUDE: "com.oracle.truffle.tck.tests.* com.oracle.truffle.tools.* " +
362373

0 commit comments

Comments
 (0)