Skip to content

Commit

Permalink
adding int test for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmipt committed Nov 15, 2024
1 parent 5f1c6ec commit 5ec7eb8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 {} \;
Expand Down

0 comments on commit 5ec7eb8

Please sign in to comment.