mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-23 22:56:54 +01:00
We will likely drop the fuzztarget feature soon, and should thus be setting cfg=fuzzing explicitly anyway.
9 lines
260 B
Bash
Executable file
9 lines
260 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
echo Testing $(git log -1 --oneline)
|
|
cargo check
|
|
cargo doc
|
|
cargo doc --document-private-items
|
|
cd fuzz && RUSTFLAGS="--cfg=fuzzing" cargo check --features=stdin_fuzz
|
|
cd ../lightning && cargo check --no-default-features --features=no-std
|