Skip to content

Commit

Permalink
Disable asm-unwind in CI
Browse files Browse the repository at this point in the history
This is currently broken due to LLVM generating incorrect code.
  • Loading branch information
Amanieu committed Oct 4, 2024
1 parent 82b9581 commit d1d9d46
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ export RUST_TEST_THREADS=1
"${CARGO}" test $CARGO_TEST_FLAGS --target "${TARGET}" --all-targets --release

# asm-unwind
if [ "${CHANNEL}" = "nightly" ]; then
"${CARGO}" test $CARGO_TEST_FLAGS --target "${TARGET}" --all-targets --features asm-unwind
"${CARGO}" test $CARGO_TEST_FLAGS --target "${TARGET}" --all-targets --features asm-unwind --release
fi
# Currently disabled because of LLVM issues.
#if [ "${CHANNEL}" = "nightly" ]; then
# "${CARGO}" test $CARGO_TEST_FLAGS --target "${TARGET}" --all-targets --features asm-unwind
# "${CARGO}" test $CARGO_TEST_FLAGS --target "${TARGET}" --all-targets --features asm-unwind --release
#fi

0 comments on commit d1d9d46

Please sign in to comment.