Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add java 21 to the CI #699

Merged
merged 1 commit into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
java: [
{ 'version': '11', 'opts': '-Drevapi.skip' },
{ 'version': '17', 'opts': 'javadoc:javadoc' },
{ 'version': '20', 'opts': '-Drevapi.skip' }
{ 'version': '20', 'opts': 'javadoc:javadoc' },
{ 'version': '21', 'opts': '-Drevapi.skip' }
]
name: build with jdk ${{matrix.java.version}}

Expand All @@ -55,7 +56,8 @@ jobs:
java: [
{ 'version': '11', 'opts': '' },
{ 'version': '17', 'opts': '' },
{ 'version': '20', 'opts': '' }
{ 'version': '20', 'opts': '' },
{ 'version': '21', 'opts': '' }
]
name: build with jdk ${{matrix.java.version}} windows

Expand All @@ -81,7 +83,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: 17
java-version: 21
distribution: temurin
cache: maven
- name: Compatibility Check
Expand All @@ -100,7 +102,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
java-version: 21
cache: maven

- name: sonar
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
with:
fetch-depth: 0 # fetch all commits and branches for mike to work properly
- uses: actions/setup-java@v3
name: Set up Java 17
name: Set up Java 21
with:
java-version: 17
java-version: 21
distribution: temurin
cache: maven
- name: Build local artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
with:
fetch-depth: 0 # fetch all commits and branches for mike to work properly
- uses: actions/setup-java@v3
name: Set up Java 17
name: Set up Java 21
with:
java-version: 17
java-version: 21
distribution: temurin
cache: maven
- uses: actions/setup-python@v4
Expand Down