Skip to content

Commit

Permalink
Move CI to use JDK 17
Browse files Browse the repository at this point in the history
Also remove JavaFX CI config in preparation for sample updates
  • Loading branch information
russhwolf committed Oct 1, 2023
1 parent 43f0d8c commit 25a0f53
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Download JavaFX JDK
run: |
mkdir -p ./jdk/binaries/
curl https://cdn.azul.com/zulu/bin/zulu11.56.19-ca-fx-jdk11.0.15-linux_x64.tar.gz --output ./jdk/zulu11.56.19-ca-fx-jdk11.0.15-linux_x64.tar.gz
- name: JDK setup
uses: actions/setup-java@v3
with:
java-version: 11
distribution: jdkfile
jdkFile: ./jdk/zulu11.56.19-ca-fx-jdk11.0.15-linux_x64.tar.gz
java-version: 17
distribution: corretto

- name: Linux build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: JDK setup
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: corretto

- name: Mac build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: JDK setup
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: corretto

- name: Windows build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: JDK setup
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: corretto

- name: Linux deploy
Expand Down

0 comments on commit 25a0f53

Please sign in to comment.