Skip to content

Commit

Permalink
Exclude Oracle Java on MacOS. It is not working currently
Browse files Browse the repository at this point in the history
It seems, that the env variable JAVA_HOME__x64 is not set
  • Loading branch information
FSchumacher committed Sep 27, 2024
1 parent 90f6998 commit d1de0b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'}})
Expand Down

0 comments on commit d1de0b8

Please sign in to comment.