Skip to content

Commit

Permalink
Update non-allowed java versions for GH CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Jun 10, 2024
1 parent b9d47a1 commit 48be0b2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ matrix.addAxis({
'11',
'17',
'21',
'22'
]
});

Expand Down Expand Up @@ -89,6 +90,8 @@ matrix.exclude({java_distribution: 'microsoft', java_version: '19'});
matrix.exclude({java_distribution: 'microsoft', java_version: '20'});
// Oracle supports 17+ only
matrix.exclude({java_distribution: 'oracle', java_version: ['8', '11', '19']});
// Temurin supports 11+ only
matrix.exclude({java_distribution: 'temurin', java_version: ['8']});

// Ensure there will be at least one job with minimal supported Java
// matrix.generateRow({java_version: matrix.axisByName.java_version.values[0]});
Expand Down

0 comments on commit 48be0b2

Please sign in to comment.