Skip to content

Commit

Permalink
try to run mingw tests not in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Dec 9, 2024
1 parent 4ececa6 commit f9a1cf1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-gradle

- run: ./gradlew ${{ matrix.target }}Test --continue
# timeout-minutes: 30
- if: ${{ matrix.os != 'windows-latest' }}
run: ./gradlew ${{ matrix.target }}Test --continue

- if: ${{ matrix.os == 'windows-latest' }}
run: ./gradlew ${{ matrix.target }}Test --continue --max-workers=1

- if: always() && !cancelled()
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit f9a1cf1

Please sign in to comment.