Run test with recent/minimal lock files
Update the CI scripts to use the minimal/recent lockfiles, requires using `--locked` for various `cargo` incantations.
This commit is contained in:
parent
4b9168ca25
commit
3da39c6fb6
|
@ -29,50 +29,50 @@ cargo test -- --ignored --exact 'tests::test_panic_raw_ctx_should_terminate_abno
|
||||||
export CARGO_TERM_VERBOSE=true
|
export CARGO_TERM_VERBOSE=true
|
||||||
|
|
||||||
# Defaults / sanity checks
|
# Defaults / sanity checks
|
||||||
cargo build --all
|
cargo build --locked --all
|
||||||
cargo test --all
|
cargo test --locked --all
|
||||||
|
|
||||||
if [ "$DO_FEATURE_MATRIX" = true ]; then
|
if [ "$DO_FEATURE_MATRIX" = true ]; then
|
||||||
cargo build --all --no-default-features
|
cargo build --locked --all --no-default-features
|
||||||
cargo test --all --no-default-features
|
cargo test --locked --all --no-default-features
|
||||||
|
|
||||||
# All features
|
# All features
|
||||||
cargo build --all --no-default-features --features="$FEATURES"
|
cargo build --locked --all --no-default-features --features="$FEATURES"
|
||||||
cargo test --all --no-default-features --features="$FEATURES"
|
cargo test --locked --all --no-default-features --features="$FEATURES"
|
||||||
# Single features
|
# Single features
|
||||||
for feature in ${FEATURES}
|
for feature in ${FEATURES}
|
||||||
do
|
do
|
||||||
cargo build --all --no-default-features --features="$feature"
|
cargo build --locked --all --no-default-features --features="$feature"
|
||||||
cargo test --all --no-default-features --features="$feature"
|
cargo test --locked --all --no-default-features --features="$feature"
|
||||||
done
|
done
|
||||||
# Features tested with 'std' feature enabled.
|
# Features tested with 'std' feature enabled.
|
||||||
for feature in ${FEATURES}
|
for feature in ${FEATURES}
|
||||||
do
|
do
|
||||||
cargo build --all --no-default-features --features="std,$feature"
|
cargo build --locked --all --no-default-features --features="std,$feature"
|
||||||
cargo test --all --no-default-features --features="std,$feature"
|
cargo test --locked --all --no-default-features --features="std,$feature"
|
||||||
done
|
done
|
||||||
# Other combos
|
# Other combos
|
||||||
RUSTFLAGS='--cfg=secp256k1_fuzz' RUSTDOCFLAGS='--cfg=secp256k1_fuzz' cargo test --all
|
RUSTFLAGS='--cfg=secp256k1_fuzz' RUSTDOCFLAGS='--cfg=secp256k1_fuzz' cargo test --locked --all
|
||||||
RUSTFLAGS='--cfg=secp256k1_fuzz' RUSTDOCFLAGS='--cfg=secp256k1_fuzz' cargo test --all --features="$FEATURES"
|
RUSTFLAGS='--cfg=secp256k1_fuzz' RUSTDOCFLAGS='--cfg=secp256k1_fuzz' cargo test --locked --all --features="$FEATURES"
|
||||||
cargo test --all --features="rand serde"
|
cargo test --locked --all --features="rand serde"
|
||||||
|
|
||||||
if [ "$NIGHTLY" = true ]; then
|
if [ "$NIGHTLY" = true ]; then
|
||||||
cargo test --all --all-features
|
cargo test --locked --all --all-features
|
||||||
RUSTFLAGS='--cfg=secp256k1_fuzz' RUSTDOCFLAGS='--cfg=secp256k1_fuzz' cargo test --all --all-features
|
RUSTFLAGS='--cfg=secp256k1_fuzz' RUSTDOCFLAGS='--cfg=secp256k1_fuzz' cargo test --locked --all --all-features
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Examples
|
# Examples
|
||||||
cargo run --example sign_verify --features=bitcoin-hashes-std
|
cargo run --locked --example sign_verify --features=bitcoin-hashes-std
|
||||||
cargo run --example sign_verify_recovery --features=recovery,bitcoin-hashes-std
|
cargo run --locked --example sign_verify_recovery --features=recovery,bitcoin-hashes-std
|
||||||
cargo run --example generate_keys --features=rand-std
|
cargo run --locked --example generate_keys --features=rand-std
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$DO_LINT" = true ]
|
if [ "$DO_LINT" = true ]
|
||||||
then
|
then
|
||||||
cargo clippy --all-features --all-targets -- -D warnings
|
cargo clippy --locked --all-features --all-targets -- -D warnings
|
||||||
cargo clippy --example sign_verify --features=bitcoin-hashes-std -- -D warnings
|
cargo clippy --locked --example sign_verify --features=bitcoin-hashes-std -- -D warnings
|
||||||
cargo clippy --example sign_verify_recovery --features=recovery,bitcoin-hashes-std -- -D warnings
|
cargo clippy --locked --example sign_verify_recovery --features=recovery,bitcoin-hashes-std -- -D warnings
|
||||||
cargo clippy --example generate_keys --features=rand-std -- -D warnings
|
cargo clippy --locked --example generate_keys --features=rand-std -- -D warnings
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Build the docs if told to (this only works with the nightly toolchain)
|
# Build the docs if told to (this only works with the nightly toolchain)
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
REPO_DIR=$(git rev-parse --show-toplevel)
|
REPO_DIR=$(git rev-parse --show-toplevel)
|
||||||
|
DEPS="recent minimal"
|
||||||
|
|
||||||
# Webassembly stuff
|
# Webassembly stuff
|
||||||
#
|
#
|
||||||
|
@ -18,4 +19,22 @@ if [ "$DO_WASM" = true ]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
for dep in $DEPS
|
||||||
|
do
|
||||||
|
cp "Cargo-$dep.lock" Cargo.lock
|
||||||
$REPO_DIR/contrib/_test.sh
|
$REPO_DIR/contrib/_test.sh
|
||||||
|
|
||||||
|
if [ "$dep" = recent ];
|
||||||
|
then
|
||||||
|
# We always test committed dependencies but we want to warn if they could've been updated
|
||||||
|
cargo update
|
||||||
|
if diff Cargo-recent.lock Cargo.lock;
|
||||||
|
then
|
||||||
|
echo "Dependencies are up to date"
|
||||||
|
else
|
||||||
|
echo "::warning file=Cargo-recent.lock::Dependencies could be updated"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue