Skip to content

Commit 865e2fe

Browse files
authored
No need to retry mac tests on failure (#11360)
1 parent 0b78c8d commit 865e2fe

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/reusable_checks_rust.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,9 @@ jobs:
190190
- name: Rust tests (`main` channel)
191191
if: ${{ inputs.CHANNEL == 'main' }}
192192
# We've seen some jobs fail on macOS because of a rendering adapter.
193-
# Let's retry and hope for the best.
194-
uses: nick-fields/retry@v3
195-
with:
196-
max_attempts: 2
197-
retry_wait_seconds: 30
198-
timeout_minutes: 60
199-
command: pixi run rs-check --only tests
193+
# Unfortunately, just retrying it using e.g. https://github.com/nick-fields/retry does NOT help
194+
# TODO(#11359): fix the Mac snapshot tests
195+
run: pixi run rs-check --only tests
200196

201197
- name: Rust all checks & tests (`nightly` channel)
202198
if: ${{ inputs.CHANNEL == 'nightly' }}

0 commit comments

Comments
 (0)