Skip to content

Commit

Permalink
retry flaky agoric-cli integration test (#9550)
Browse files Browse the repository at this point in the history
closes: #9325


## Description

Auto-retry the flaky test.

### Security Considerations
none

### Scaling Considerations
none

### Documentation Considerations
none

### Testing Considerations
The problem it's fixing is intermittent. If it passes CI once, let's let it in and see over the following days whether CI failure is down. (And reopen the issue that landing this closes)

### Upgrade Considerations
none
  • Loading branch information
mergify[bot] authored Jun 21, 2024
2 parents 52e0339 + 2a68510 commit c5c52ec
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,14 @@ jobs:
REGISTRY_PUBLISH_WORKSPACES="$HOME/endo" scripts/registry.sh bg-publish ${{ matrix.cli }}
- name: run agoric-cli integration-test
run: scripts/registry.sh test ${{ matrix.cli }} ${{steps.get-branch.outputs.result}}
# These integration tests can be flaky so retry automatically
uses: nick-fields/retry@v3
with:
# This step usually takes <4 minutes (after 6m setup). The
# deployment-test running in parallel takes 35 minutes so 20 minutes
# won't increase the time for this workflow to complete.
timeout_minutes: 20
command: scripts/registry.sh test ${{ matrix.cli }} ${{steps.get-branch.outputs.result}}

- name: notify on failure
if: >
Expand Down

0 comments on commit c5c52ec

Please sign in to comment.