From 7b6a13b0041ca9a1b48408b324110f708a33fef4 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 27 Mar 2024 11:45:42 +1100 Subject: [PATCH] CI: Revert cc pin in ASAN job Revert commit: 92778efe926b673f04e2935af50314db99cf8244 We can't use git to revert it because the code has now moved from `test.sh` to `_test.sh`. I don't remember the problem but lets just use CI to see if its fixed. --- contrib/_test.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/contrib/_test.sh b/contrib/_test.sh index 21ce874..e18b231 100755 --- a/contrib/_test.sh +++ b/contrib/_test.sh @@ -101,11 +101,6 @@ if [ "$DO_ASAN" = true ]; then RUSTFLAGS='-Zsanitizer=memory -Zsanitizer-memory-track-origins -Cforce-frame-pointers=yes -Cllvm-args=-msan-eager-checks=0' \ cargo test --lib --all --features="$FEATURES" -Zbuild-std --target x86_64-unknown-linux-gnu - pushd "$REPO_DIR/no_std_test" > /dev/null || exit 1 - # See https://github.com/rust-bitcoin/rust-secp256k1/pull/641#issuecomment-1671598914 - cargo update -p cc --precise 1.0.79 - popd > /dev/null || exit 1 - cargo run --release --manifest-path=./no_std_test/Cargo.toml | grep -q "Verified Successfully" cargo run --release --features=alloc --manifest-path=./no_std_test/Cargo.toml | grep -q "Verified alloc Successfully" fi