diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 2e769ca3..bd508374 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -44,10 +44,16 @@ jobs: run: ./gradlew build timeout-minutes: 2 - - name: Integration tests + - name: Integration tests - Linux + if: ${{ runner.os == 'Linux' }} run: ./intTests-Xvfb.sh timeout-minutes: 5 + - name: Integration tests - Windows + if: ${{ runner.os == 'Windows' }} + run: ./gradlew integrationTest -x test + timeout-minutes: 5 + - name: Log files - Linux if: ${{ runner.os == 'Linux' }} run: find . -type f -exec echo {} \;