Skip to content

Commit

Permalink
chore(ci): automatically retry integration tests on failure on push
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon committed Sep 27, 2024
1 parent 4739d94 commit 17e6e34
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,13 @@ jobs:
- name: Lerna tsc
run: yarn tsc
- name: Run Integration tests for ${{ matrix.db }} matrix
timeout-minutes: 30
run: ./.github/actions/integration/${{ matrix.db }}.sh
uses: nick-fields/retry@v3
with:
max_attempts: 3
retry_on: error
retry_wait_seconds: 15
timeout_minutes: 30
command: ./.github/actions/integration/${{ matrix.db }}.sh

integration-smoke:
needs: [ latest-tag-sha, build-cubestore ]
Expand Down

0 comments on commit 17e6e34

Please sign in to comment.