Skip to content

Commit

Permalink
ci: downgrade serde_test
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Aug 22, 2023
1 parent cb797d0 commit 7269ad6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ci/test_full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,15 @@ if rustc --version | grep -q nightly; then
fi

case "${STD_FEATURES[*]}" in
*serde*) cargo test --manifest-path ci/big_serde/Cargo.toml ;;&
*serde*) (
cd ci/big_serde
# serde_test updated to 2021 edition after this version
check_version 1.56.0 || (
cargo generate-lockfile
cargo update -p serde_test --precise 1.0.175
)
cargo test
) ;;&
*rand*) cargo test --manifest-path ci/big_rand/Cargo.toml ;;&
*quickcheck*) (
cd ci/big_quickcheck
Expand Down

0 comments on commit 7269ad6

Please sign in to comment.