Skip to content

Commit

Permalink
Remove JDK 11 from CI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotn committed Apr 23, 2024
1 parent f3ebc18 commit ae99604
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,17 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '11', '17', '21' ]
java: [ '17', '21' ]
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- if: ${{ matrix.java != '11' }}
name: "Maven install > 11"
- name: "Maven install"
run: |
mvn -Pstaging install -DskipTests=true -Dno-format -B -V
- if: ${{ matrix.java == '11' }}
name: "Maven install 11"
- name: "Maven test"
run: |
mvn -Pstaging -pl '!el' install -DskipTests=true -Dno-format -B -V
- if: ${{ matrix.java != '11' }}
name: "Maven test > 11"
run: |
mvn -Pstaging test -B
- if: ${{ matrix.java == '11' }}
name: "Maven test 11"
run: |
mvn -Pstaging -pl '!el' test -B
mvn -Pstaging test -B

0 comments on commit ae99604

Please sign in to comment.