Skip to content

Commit

Permalink
Added JDK 21 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto-Gentili committed Oct 3, 2023
1 parent 801981b commit d388880
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,11 @@ jobs:
git config user.email "${{ github.event.head_commit.committer.email }}"
git pull origin ${{github.ref}}
- name: Build and test with Java 7 target
if: ${{ fromJSON(matrix.java) <= 19 }}
run: mvn -B clean test -DskipTests=false --file ./java/pom.xml
- name: Build and test with Java 8 target
if: ${{ fromJSON(matrix.java) > 19}}
run: mvn -B clean test -Dproject_jdk_version=8 -DskipTests=false --file ./java/pom.xml


build-and-test-with-liberica-JDK:
Expand Down

0 comments on commit d388880

Please sign in to comment.