Skip to content

Commit

Permalink
Exclude JDK 8 - temurin, adopt-openj9 on macos, use defaults values
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed May 3, 2024
1 parent d55ea29 commit 1aa4293
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/maven-verify.yml
Expand Up @@ -28,7 +28,10 @@ jobs:
with:
# maven-args: "-Dinvoker.parallelThreads=2" cannot do this as this generate some concurrent download issues
jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "adopt-openj9" ]'
ff-jdk: "20"
jdk-matrix: '[ "8", "11", "17", "20" ]'
matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"},{ "jdk": "20", "distribution": "microsoft"},{ "jdk": "20", "distribution": "adopt-openj9"},]'
maven-matrix: '[ "3.6.3", "3.8.8", "3.9.5" ]' # Maven versions matrix for verify builds
jdk-matrix: '[ "8", "11", "17", "21" ]'
matrix-exclude: '[
{ "jdk": "8", "distribution": "microsoft" },
{ "jdk": "8", "distribution": "temurin", "os": "macos-latest" },
{ "jdk": "8", "distribution": "adopt-openj9", "os": "macos-latest" }
]'
maven-matrix: '[ "3.6.3", "3.8.8", "3.9.6" ]' # Maven versions matrix for verify builds

0 comments on commit 1aa4293

Please sign in to comment.