2020-09-15 14:39:44 -04:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
set -x
|
2024-04-25 15:32:32 +02:00
|
|
|
echo "Testing $(git log -1 --oneline)"
|
2020-09-15 14:39:44 -04:00
|
|
|
cargo check
|
2021-03-17 14:05:09 -04:00
|
|
|
cargo doc
|
2021-03-17 15:56:02 -04:00
|
|
|
cargo doc --document-private-items
|
2024-05-11 10:55:02 +08:00
|
|
|
cd fuzz && RUSTFLAGS="--cfg=fuzzing --cfg=secp256k1_fuzz --cfg=hashes_fuzz" cargo check --features=stdin_fuzz
|
2021-08-03 09:38:44 +02:00
|
|
|
cd ../lightning && cargo check --no-default-features --features=no-std
|
2023-07-19 18:39:31 +00:00
|
|
|
cd .. && RUSTC_BOOTSTRAP=1 RUSTFLAGS="--cfg=c_bindings" cargo check -Z avoid-dev-deps
|