We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b78c8d commit 865e2feCopy full SHA for 865e2fe
.github/workflows/reusable_checks_rust.yml
@@ -190,13 +190,9 @@ jobs:
190
- name: Rust tests (`main` channel)
191
if: ${{ inputs.CHANNEL == 'main' }}
192
# 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
+ # Unfortunately, just retrying it using e.g. https://github.com/nick-fields/retry does NOT help
+ # TODO(#11359): fix the Mac snapshot tests
+ run: pixi run rs-check --only tests
200
201
- name: Rust all checks & tests (`nightly` channel)
202
if: ${{ inputs.CHANNEL == 'nightly' }}
0 commit comments