2020-11-10 23:36:07 +00:00
#!/bin/sh -ex
2022-02-01 02:43:42 +00:00
# TODO: Add "alloc" once we bump MSRV to past 1.29
FEATURES = "bitcoin_hashes global-context lowmemory rand rand-std recovery serde std"
2020-11-10 23:36:07 +00:00
# Use toolchain if explicitly specified
if [ -n " $TOOLCHAIN " ]
then
alias cargo = " cargo + $TOOLCHAIN "
fi
cargo --version
rustc --version
2020-12-18 12:08:52 +00:00
# Make all cargo invocations verbose
export CARGO_TERM_VERBOSE = true
2020-11-10 23:36:07 +00:00
# Defaults / sanity checks
2020-12-18 12:08:52 +00:00
cargo build --all
cargo test --all
2020-11-10 23:36:07 +00:00
if [ " $DO_FEATURE_MATRIX " = true ] ; then
2020-12-18 12:08:52 +00:00
cargo build --all --no-default-features
2022-02-01 02:43:42 +00:00
cargo test --all --no-default-features
2020-11-10 23:36:07 +00:00
# All features
2020-12-18 12:08:52 +00:00
cargo build --all --no-default-features --features= " $FEATURES "
2022-02-01 02:43:42 +00:00
cargo test --all --no-default-features --features= " $FEATURES "
2020-11-10 23:36:07 +00:00
# Single features
for feature in ${ FEATURES }
do
2020-12-18 12:08:52 +00:00
cargo build --all --no-default-features --features= " $feature "
2022-02-01 02:43:42 +00:00
cargo test --all --no-default-features --features= " $feature "
2020-11-10 23:36:07 +00:00
done
2020-12-23 18:00:34 +00:00
# Other combos
2021-01-11 19:14:42 +00:00
RUSTFLAGS = '--cfg=fuzzing' RUSTDOCFLAGS = $RUSTFLAGS cargo test --all
RUSTFLAGS = '--cfg=fuzzing' RUSTDOCFLAGS = $RUSTFLAGS cargo test --all --features= " $FEATURES "
2020-12-18 12:08:52 +00:00
cargo test --all --features= "rand rand-std"
cargo test --all --features= "rand serde"
2020-11-10 23:36:07 +00:00
2020-12-23 18:00:34 +00:00
if [ " $DO_BENCH " = true ] ; then # proxy for us having a nightly compiler
cargo test --all --all-features
2021-01-11 19:14:42 +00:00
RUSTFLAGS = '--cfg=fuzzing' RUSTDOCFLAGS = '--cfg=fuzzing' cargo test --all --all-features
2020-12-23 18:00:34 +00:00
fi
2020-11-10 23:36:07 +00:00
# Examples
2022-02-01 03:59:29 +00:00
cargo run --example sign_verify --features= std
cargo run --example sign_verify_recovery --features= std,recovery
cargo run --example generate_keys --features= std,rand-std
2020-11-10 23:36:07 +00:00
fi
# Docs
if [ " $DO_DOCS " = true ] ; then
2020-12-18 12:08:52 +00:00
cargo doc --all --features= " $FEATURES "
2020-11-10 23:36:07 +00:00
fi
# Webassembly stuff
if [ " $DO_WASM " = true ] ; then
clang --version &&
2020-12-18 12:08:52 +00:00
CARGO_TARGET_DIR = wasm cargo install --force wasm-pack &&
2020-11-10 23:36:07 +00:00
printf '\n[lib]\ncrate-type = ["cdylib", "rlib"]\n' >> Cargo.toml &&
CC = clang-9 wasm-pack build &&
CC = clang-9 wasm-pack test --node;
fi
# Address Sanitizer
if [ " $DO_ASAN " = true ] ; then
cargo clean
CC = 'clang -fsanitize=address -fno-omit-frame-pointer' \
RUSTFLAGS = '-Zsanitizer=address -Clinker=clang -Cforce-frame-pointers=yes' \
ASAN_OPTIONS = 'detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' \
2020-12-18 12:08:52 +00:00
cargo test --lib --all --features= " $FEATURES " -Zbuild-std --target x86_64-unknown-linux-gnu &&
2020-11-10 23:36:07 +00:00
cargo clean &&
CC = 'clang -fsanitize=memory -fno-omit-frame-pointer' \
RUSTFLAGS = '-Zsanitizer=memory -Zsanitizer-memory-track-origins -Cforce-frame-pointers=yes' \
2020-12-18 12:08:52 +00:00
cargo test --lib --all --features= " $FEATURES " -Zbuild-std --target x86_64-unknown-linux-gnu &&
cargo run --release --manifest-path= ./no_std_test/Cargo.toml | grep -q "Verified Successfully"
2021-05-17 12:37:36 +00:00
cargo run --release --features= alloc --manifest-path= ./no_std_test/Cargo.toml | grep -q "Verified alloc Successfully"
2020-11-10 23:36:07 +00:00
fi
2021-03-19 10:16:06 +00:00
# Test if panic in C code aborts the process (either with a real panic or with SIGILL)
cargo test -- --ignored --exact 'tests::test_panic_raw_ctx_should_terminate_abnormally' 2>& 1 | tee /dev/stderr | grep "SIGILL\\|panicked at '\[libsecp256k1\]"
2020-11-10 23:36:07 +00:00
# Bench
if [ " $DO_BENCH " = true ] ; then
2020-12-18 12:08:52 +00:00
cargo bench --all --features= "unstable"
2020-11-10 23:36:07 +00:00
fi