Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): bandaid for flaky macOS tests
Browse files Browse the repository at this point in the history
pront committed Jan 17, 2025
1 parent 70d3e63 commit bddd68a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/unit_mac.yml
Original file line number Diff line number Diff line change
@@ -47,7 +47,15 @@ jobs:
- run: bash scripts/environment/bootstrap-macos.sh
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: make test

# Some tests e.g. `reader_exits_cleanly_when_writer_done_and_in_flight_acks` are flaky.
- name: Run tests
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: make test

- run: make test-behavior

- name: (PR review) Set latest commit status as ${{ job.status }}

0 comments on commit bddd68a

Please sign in to comment.