Skip to content

Commit

Permalink
[ci] Work around Miri bug on aarch64 targets (#519)
Browse files Browse the repository at this point in the history
Works around rust-lang/miri#3125
  • Loading branch information
joshlf committed Oct 18, 2023
1 parent 0da18da commit 14416a5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@ jobs:

- name: Run tests under Miri
run: |
# Work around https://github.com/rust-lang/miri/issues/3125
[ "${{ matrix.target }}" == "aarch64-unknown-linux-gnu" ] && cargo clean
# Run under both the stacked borrows model (default) and under the tree
# borrows model to ensure we're compliant with both.
for EXTRA_FLAGS in "" "-Zmiri-tree-borrows"; do
Expand Down

0 comments on commit 14416a5

Please sign in to comment.