diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b166224..61fffca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 @@ -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'