From d1d9d4676ff57d387392fd971ec12db696b91b19 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Fri, 4 Oct 2024 22:38:54 +0200 Subject: [PATCH] Disable asm-unwind in CI This is currently broken due to LLVM generating incorrect code. --- ci/run.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ci/run.sh b/ci/run.sh index afa3ffd..9984059 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -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