diff --git a/.github/workflows/matrix.js b/.github/workflows/matrix.js index ba4364eb1f0..acf5472f941 100644 --- a/.github/workflows/matrix.js +++ b/.github/workflows/matrix.js @@ -78,6 +78,8 @@ matrix.setNamePattern(['java_version', 'java_distribution', 'hash', 'os', 'tz', // Semeru uses OpenJ9 jit which has no option for making hash codes the same matrix.exclude({java_distribution: {value: 'semeru'}, hash: {value: 'same'}}); +// MacOS and Oracle Java does not work currently. No JAVA_HOME_${VERSION}_x64 set and thus no java found +matrix.exclude({os: 'macos-latest', java_distribution: {value: 'oracle'}}) // Ignore builds with JAVA EA for now, see https://github.com/apache/jmeter/issues/6114 matrix.exclude({java_version: eaJava}) matrix.imply({java_version: eaJava}, {java_distribution: {value: 'oracle'}})