From 8f45723bc690ee68737311577dc8167add5ec940 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 21 Apr 2022 11:38:59 +1000 Subject: [PATCH] test.sh: Remove 1.29 pinning We no longer need to test Rust 1.29, remove the pinning from the test script. --- contrib/test.sh | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/contrib/test.sh b/contrib/test.sh index 41503bc9..676e26bb 100755 --- a/contrib/test.sh +++ b/contrib/test.sh @@ -8,19 +8,6 @@ then alias cargo="cargo +$TOOLCHAIN" fi -pin_common_verions() { - cargo generate-lockfile --verbose - cargo update -p cc --precise "1.0.41" --verbose - cargo update -p serde --precise "1.0.98" --verbose - cargo update -p serde_derive --precise "1.0.98" --verbose -} - -# Pin `cc` for Rust 1.29 -if [ "$PIN_VERSIONS" = true ]; then - pin_common_verions - cargo update -p byteorder --precise "1.3.4" -fi - if [ "$DO_COV" = true ] then export RUSTFLAGS="-C link-dead-code" @@ -95,10 +82,5 @@ then cd dep_test echo 'bitcoin = { path = "..", features = ["use-serde"] }' >> Cargo.toml - # Pin `cc` for Rust 1.29 - if [ -n "$PIN_VERSIONS" ]; then - pin_common_verions - fi - cargo test --verbose fi