Skip to content

Commit

Permalink
Add back docker, try just ubuntu tests
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus committed Sep 11, 2024
1 parent 2fd05bf commit db02414
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest ] #, windows-latest
os: [ ubuntu-latest ] # macOS-latest, windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
Expand All @@ -20,7 +20,9 @@ jobs:

- name: 'Run Linux Tests'
if: matrix.os == 'ubuntu-latest'
run: ./gradlew clean build --stacktrace -PisCI -Pnosign
run: >-
docker-compose build && docker-compose run --rm --service-ports setup &&
./gradlew clean build --stacktrace -PisCI -Pnosign
- name: 'Run MacOS Tests'
if: matrix.os == 'macOS-latest'
Expand Down

0 comments on commit db02414

Please sign in to comment.