Skip to content

Commit d1de0b8

Browse files
committed
Exclude Oracle Java on MacOS. It is not working currently
It seems, that the env variable JAVA_HOME__x64 is not set
1 parent 90f6998 commit d1de0b8

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/matrix.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ matrix.setNamePattern(['java_version', 'java_distribution', 'hash', 'os', 'tz',
7878

7979
// Semeru uses OpenJ9 jit which has no option for making hash codes the same
8080
matrix.exclude({java_distribution: {value: 'semeru'}, hash: {value: 'same'}});
81+
// MacOS and Oracle Java does not work currently. No JAVA_HOME_${VERSION}_x64 set and thus no java found
82+
matrix.exclude({os: 'macos-latest', java_distribution: {value: 'oracle'}})
8183
// Ignore builds with JAVA EA for now, see https://github.com/apache/jmeter/issues/6114
8284
matrix.exclude({java_version: eaJava})
8385
matrix.imply({java_version: eaJava}, {java_distribution: {value: 'oracle'}})

0 commit comments

Comments
 (0)