Skip to content

Commit

Permalink
don't run hfs CI tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mcginty committed Feb 2, 2022
1 parent 8186005 commit 2e5cf14
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ cargo test $TARGET --no-default-features
cargo test $TARGET --features "$COMMON_FEATURES"
cargo test $TARGET --features "ring-resolver $COMMON_FEATURES"
cargo test $TARGET --features "ring-accelerated $COMMON_FEATURES"
cargo test $TARGET --features "hfs pqclean_kyber1024 $COMMON_FEATURES"
cargo test $TARGET --features "ring-resolver hfs pqclean_kyber1024 $COMMON_FEATURES"
if ! rustc -vV | grep 'host: .*windows' &> /dev/null; then
cargo test $TARGET --features "hfs pqclean_kyber1024 $COMMON_FEATURES"
cargo test $TARGET --features "ring-resolver hfs pqclean_kyber1024 $COMMON_FEATURES"
fi
cargo test $TARGET --features "libsodium-resolver $COMMON_FEATURES"
cargo test $TARGET --features "libsodium-accelerated $COMMON_FEATURES"

0 comments on commit 2e5cf14

Please sign in to comment.