From db0241434869724e7fb7254e9c13e0b943559655 Mon Sep 17 00:00:00 2001 From: Alexander Ioffe Date: Wed, 11 Sep 2024 17:05:40 -0400 Subject: [PATCH] Add back docker, try just ubuntu tests --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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'