From bf093c39f8cb7379477da117bfccb9ae91d97f87 Mon Sep 17 00:00:00 2001 From: Alexander Ioffe Date: Fri, 2 Feb 2024 15:15:58 -0500 Subject: [PATCH] Try exclude pprint-kotlin if not linux --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index da982a7..06d4edd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,10 +11,13 @@ jobs: include: - os: ubuntu-latest platform: linux + build_command: build - os: macOS-latest platform: mac + build_command: build -x :pprint-kotlin - os: windows-latest platform: windows + build_command: build -x :pprint-kotlin steps: - uses: actions/checkout@v3 - name: Set up JDK 11 @@ -24,4 +27,4 @@ jobs: distribution: 'adopt' - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@v1 - - run: ./gradlew build test -Pplatform=${{ matrix.platform }} --stacktrace -Pnosign + - run: ./gradlew ${{ matrix.build_command }} -Pplatform=${{ matrix.platform }} --stacktrace -Pnosign