You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yaml
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -348,19 +348,20 @@ jobs:
348
348
name: Run tests under miri
349
349
runs-on: ubuntu-latest
350
350
timeout-minutes: 30
351
+
env:
352
+
RUSTUP_TOOLCHAIN: nightly-2025-07-18 # TODO: Set to "nightly" once https://github.com/rust-lang/rust/issues/144168 is fixed
351
353
steps:
352
354
- uses: actions/checkout@v4
353
355
- uses: dtolnay/rust-toolchain@master
354
356
with:
355
-
toolchain: nightly-2025-07-18 # TODO: Set to "nightly" once https://github.com/rust-lang/rust/issues/144168 is fixed
357
+
toolchain: ${{ env.RUSTUP_TOOLCHAIN }}
356
358
components: miri
357
359
358
360
- uses: Swatinem/rust-cache@v2
359
361
- name: Run tests under miri
360
362
# miri-ignore-leaks because the type-object circular reference means that there will always be
361
363
# a memory leak, at least until we have proper cyclic gc
0 commit comments