Skip to content

Commit

Permalink
Updates JDKs in CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
jqno committed Sep 21, 2021
1 parent b071685 commit 857582f
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,31 @@ jobs:
continue-on-error: false
cache-id: "jdk8"
java: 8
dist: adopt
flags: "-DdisableStaticAnalysis"
- title: "Supported JDK 11"
continue-on-error: false
cache-id: "jdk11"
java: 11
dist: adopt
flags: ""
- title: "Supported JDK 16"
- title: "Supported JDK 17"
continue-on-error: false
cache-id: "jdk16"
java: 16
cache-id: "jdk17"
java: 17
dist: zulu
flags: ""
- title: "Experimental JDK EA (simplified)"
continue-on-error: false
cache-id: "jdk-ea-simple"
java: "17-ea"
java: "18-ea"
dist: zulu
flags: "-Dexperimental -DdisableStaticAnalysis"
- title: "Experimental JDK EA (full)"
continue-on-error: true
cache-id: "jdk-ea-full"
java: "17-ea"
java: "18-ea"
dist: zulu
flags: ""
runs-on: ubuntu-latest
steps:
Expand All @@ -50,7 +55,7 @@ jobs:
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v2
with:
distribution: 'adopt'
distribution: ${{ matrix.dist }}
java-version: ${{ matrix.java }}
- name: 'Set up node' # Needed for formatting with prettier
uses: actions/[email protected]
Expand Down

0 comments on commit 857582f

Please sign in to comment.