This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new d1de0b8e1a Exclude Oracle Java on MacOS. It is not working currently
d1de0b8e1a is described below
commit d1de0b8e1a41e52872b89aaea2dd3eff7923cc30
Author: Felix Schumacher <[email protected]>
AuthorDate: Fri Sep 27 14:29:13 2024 +0200
Exclude Oracle Java on MacOS. It is not working currently
It seems, that the env variable JAVA_HOME__x64 is not set
---
.github/workflows/matrix.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/matrix.js b/.github/workflows/matrix.js
index ba4364eb1f..acf5472f94 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'}})