Skip to content

Commit

Permalink
WIP!
Browse files Browse the repository at this point in the history
  • Loading branch information
mhratson committed Sep 2, 2024
1 parent 00003a4 commit 7e2309b
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ concurrency:
jobs:
setup:
runs-on: [ubuntu-latest]
strategy:
fail-fast: false
matrix:
java-ver: [ 11 ]
java-dist: ['microsoft', 'temurin']
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -28,11 +33,6 @@ jobs:
name: "test with JDK=${{matrix.java-dist}}:${{matrix.java-ver}}"
needs: setup
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java-ver: [ 11 ]
java-dist: ['microsoft', 'temurin']
steps:
- name: gradle build
run: ./gradlew --no-daemon -PmaxParallelForks=1 build
Expand All @@ -41,16 +41,7 @@ jobs:
name: "integration test with JDK=${{matrix.java-dist}}:${{matrix.java-ver}}"
needs: setup
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
java-ver: [ 11 ]
java-dist: ['microsoft', 'temurin']
steps:
- name: gradle build
run: ./gradlew --no-daemon -PmaxParallelForks=1 build

- name: gradle integration test
run: ./gradlew --no-daemon -PmaxParallelForks=1 clean integrationTest

Expand Down

0 comments on commit 7e2309b

Please sign in to comment.