Skip to content

Commit

Permalink
ci: Fail Miri CI on first failure (apache#5243)
Browse files Browse the repository at this point in the history
* Fail Miri CI on first failure

* Ignore crates with asm
  • Loading branch information
Jefffrey authored Dec 26, 2023
1 parent 0eb8a08 commit ff951b4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/miri.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
# Must be run with nightly rust for example
# rustup default nightly

set -e

export MIRIFLAGS="-Zmiri-disable-isolation"
cargo miri setup
cargo clean
Expand All @@ -13,6 +15,7 @@ echo "Starting Arrow MIRI run..."
cargo miri test -p arrow-buffer
cargo miri test -p arrow-data --features ffi
cargo miri test -p arrow-schema --features ffi
cargo miri test -p arrow-array
cargo miri test -p arrow-arith
cargo miri test -p arrow-ord
# inline assembly not supported by Miri
# cargo miri test -p arrow-array
# cargo miri test -p arrow-arith

0 comments on commit ff951b4

Please sign in to comment.