Skip to content

Commit

Permalink
Implement retries on always failing windows
Browse files Browse the repository at this point in the history
  • Loading branch information
oldergod committed Aug 30, 2023
1 parent 448586f commit f9bd1ec
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,13 @@ jobs:
uses: browser-actions/setup-chrome@latest

- name: Test
run: |
./gradlew -Pswift=false build --stacktrace --warning-mode all
shell: bash
uses: nick-fields/retry@v2
with:
max_attempts: 5
retry_on: error
shell: bash
command: |
./gradlew -Pswift=false build --stacktrace --warning-mode all
swift:
runs-on: macos-latest
Expand Down

0 comments on commit f9bd1ec

Please sign in to comment.