Skip to content

Commit

Permalink
ci for Jetty12
Browse files Browse the repository at this point in the history
  • Loading branch information
d-t-w committed Jan 9, 2025
1 parent 166be01 commit 31cc092
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
project: [slipway-jetty9, slipway-jetty10, slipway-jetty11]
project: [slipway-jetty9, slipway-jetty10, slipway-jetty11, slipway-jetty12]

steps:
- name: Checkout
Expand All @@ -28,12 +28,19 @@ jobs:
java-version: '8'

- name: Setup Java11
if: ${{ matrix.project != 'slipway-jetty9' }}
if: ${{ matrix.project == 'slipway-jetty10' || matrix.project == 'slipway-jetty11'}}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'

- name: Setup Java17
if: ${{ matrix.project == 'slipway-jetty12' }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
Expand Down

0 comments on commit 31cc092

Please sign in to comment.