Skip to content

Commit

Permalink
Disable the builds with SE 11
Browse files Browse the repository at this point in the history
Signed-off-by: Scott M Stark <starksm64@gmail.com>
  • Loading branch information
starksm64 committed Feb 22, 2024
1 parent 048b1d4 commit e730405
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
17 changes: 4 additions & 13 deletions .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,18 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '11', '17', '21' ]
java: [ '17', '21' ]
steps:
- uses: actions/checkout@v4.1.1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4.0.0
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"
run: |
mvn -Pstaging -pl '!el' install -DskipTests=true -Dno-format -B -V
- if: ${{ matrix.java != '11' }}
name: "Maven test > 11"
- name: "Maven test"
run: |
mvn -Pstaging test -B
- if: ${{ matrix.java == '11' }}
name: "Maven test 11"
run: |
mvn -Pstaging -pl '!el' test -B
1 change: 0 additions & 1 deletion el/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

<properties>
<uel.api.version>6.0.0-M2</uel.api.version>
<maven.compiler.release>17</maven.compiler.release>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit e730405

Please sign in to comment.