Skip to content

Commit

Permalink
[#77] Add back java 17 integration test and set build jdk to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
meierval committed Oct 17, 2023
1 parent 88a3a9c commit 74938f1
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/build_girders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 21
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '21.0.0'
java-version: '17.0.0'
distribution: 'zulu'
cache: 'maven'
server-id: 'ossrh' # Value of the distributionManagement/repository/id field of the pom.xml
Expand Down Expand Up @@ -78,4 +78,22 @@ jobs:
cache: 'maven'
- name: run integration tests
run: mvn --batch-mode -f girders-demos/girders-demo-test/pom.xml install

integration_tests_17:
name: Integration tests for Java 17
runs-on: ubuntu-latest
needs: build_girders
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17.0.0'
distribution: 'zulu'
cache: 'maven'
- name: run integration tests
run: mvn --batch-mode -f girders-demos/girders-demo-test/pom.xml install

0 comments on commit 74938f1

Please sign in to comment.