-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathci-tests.sh
executable file
·26 lines (24 loc) · 1.14 KB
/
ci-tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env bash
set -e
TARGET="$([ -n "$1" ] && echo "--target $1" || echo "")"
MSRV="$(cargo metadata --no-deps | jq -r .packages[0].rust_version)"
RUSTC_VERSION="$(rustc --version | cut -d' ' -f2)"
TEST="cargo nextest run"
COMMON_FEATURES="use-p256 use-xchacha20poly1305 vector-tests"
if ! rustc -vV | grep 'host: .*windows' &> /dev/null; then
COMMON_FEATURES="hfs use-pqcrypto-kyber1024 $COMMON_FEATURES"
fi
set -x
cargo check --benches --tests --examples
if [[ "$CI" != "true" || "$RUSTC_VERSION" == "$MSRV" ]]; then
cargo clippy --features "$COMMON_FEATURES" --tests --benches --examples -- -Dwarnings
else
echo "skipping cargo clippy on non-MSRV CI run. MSRV: $MSRV, rustc: $RUSTC_VERSION"
fi
$TEST $TARGET --no-default-features
# Custom set of crypto without std
$TEST $TARGET --no-default-features --features "default-resolver use-curve25519 use-blake2 use-chacha20poly1305"
# Custom set of crypto with std
$TEST $TARGET --no-default-features --features "default-resolver use-curve25519 use-sha2 use-chacha20poly1305"
$TEST $TARGET --features "ring-resolver $COMMON_FEATURES"
$TEST $TARGET --features "ring-accelerated $COMMON_FEATURES"