We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d6654e commit 16b13bcCopy full SHA for 16b13bc
.github/workflows/matrix.js
@@ -83,6 +83,8 @@ matrix.exclude({os: 'macos-latest', java_distribution: {value: 'oracle'}})
83
// Ignore builds with JAVA EA for now, see https://github.com/apache/jmeter/issues/6114
84
matrix.exclude({java_version: eaJava})
85
matrix.imply({java_version: eaJava}, {java_distribution: {value: 'oracle'}})
86
+// Oracle JDK is only supported for JDK 21 and later
87
+matrix.imply({java_distribution: {value: 'oracle'}}, {java_version: v => v === eaJava || v >= 21});
88
// TODO: Semeru does not ship Java 21 builds yet
89
matrix.exclude({java_distribution: {value: 'semeru'}, java_version: '21'});
90
// Ensure at least one job with "same" hashcode exists
0 commit comments