Skip to content

Commit

Permalink
Merge pull request javaparser#4479 from johannescoetzee/johannes/igno…
Browse files Browse the repository at this point in the history
…re-unavailable-versions

Exclude unavailable macos <-> java version combinations from github tests
  • Loading branch information
jlerbsc authored Jun 24, 2024
2 parents 23676de + 111dea5 commit f75a50c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/maven_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,19 @@ jobs:
## Different JDK versions have different implementations etc. -- test on all combinations (ideally 8 to latest).
### exclude pre-8 (min development version jdk8)
jdk: [ 8,9,10,11,12,13,14,15,16,17,18 ]
# The below configurations are no longer available on github runners and is not supported by the
# setup-java action, nor are they available from the supported distributions.
# See https://github.com/actions/setup-java for details
exclude:
- os: macos-latest
jdk: 9
- os: macos-latest
jdk: 10
- os: macos-latest
jdk: 12
- os: macos-latest
jdk: 14

env:
OS: ${{ matrix.os }}
JDK: ${{ matrix.jdk }}
Expand Down

0 comments on commit f75a50c

Please sign in to comment.