File tree 7 files changed +221
-585
lines changed
7 files changed +221
-585
lines changed Original file line number Diff line number Diff line change @@ -33,12 +33,17 @@ if [ "$DO_FEATURE_MATRIX" = true ]; then
33
33
cargo test --all --features=" $feature "
34
34
done
35
35
36
- # Other combos
37
- RUSTFLAGS=' --cfg=rust_secp_fuzz' cargo test --no-run --all
38
- RUSTFLAGS=' --cfg=rust_secp_fuzz' cargo test --no-run -- all --features=" recovery "
36
+ # Other combos
37
+ RUSTFLAGS=' --cfg=rust_secp_fuzz' RUSTDOCFLAGS= $RUSTFLAGS cargo test --all
38
+ RUSTFLAGS=' --cfg=rust_secp_fuzz' RUSTDOCFLAGS= $RUSTFLAGS cargo test --all --features=" $FEATURES "
39
39
cargo test --all --features=" rand rand-std"
40
40
cargo test --all --features=" rand serde"
41
41
42
+ if [ " $DO_BENCH " = true ]; then # proxy for us having a nightly compiler
43
+ cargo test --all --all-features
44
+ RUSTFLAGS=' --cfg=rust_secp_fuzz' RUSTDOCFLAGS=' --cfg=rust_secp_fuzz' cargo test --all --all-features
45
+ fi
46
+
42
47
# Examples
43
48
cargo run --example sign_verify
44
49
cargo run --example sign_verify_recovery --features=recovery
You can’t perform that action at this time.
0 commit comments