Skip to content

Commit

Permalink
chore(ci): update java 20 version to release from ea ☕️; add java 21 …
Browse files Browse the repository at this point in the history
…to CI
  • Loading branch information
oldratlee committed Mar 27, 2023
1 parent 806e887 commit 64215e0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ jobs:
- name: setup java20
uses: actions/setup-java@v3
with:
java-version: 20-ea
java-version: 20
distribution: zulu
- name: setup java21
uses: actions/setup-java@v3
with:
java-version: 21-ea
distribution: zulu

- run: scripts/integration_test
Expand All @@ -50,6 +55,7 @@ jobs:
JAVA17_HOME: ${{ env.JAVA_HOME_17_X64 }}
JAVA19_HOME: ${{ env.JAVA_HOME_19_X64 }}
JAVA20_HOME: ${{ env.JAVA_HOME_20_X64 }}
JAVA21_HOME: ${{ env.JAVA_HOME_21_X64 }}

- name: remove self maven install files
run: rm -rf $HOME/.m2/repository/io/foldright/cffu/
Expand Down
1 change: 1 addition & 0 deletions scripts/integration_test
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ readonly JDK_VERSIONS=(
17
"$default_build_jdk_version"
20
21
)
readonly default_jh_var_name="JAVA${default_build_jdk_version}_HOME"

Expand Down

0 comments on commit 64215e0

Please sign in to comment.