Skip to content

Commit bfdb58a

Browse files
committed
test.sh: Remove 1.29 pinning
We no longer need to test Rust 1.29, remove the pinning from the test script.
1 parent bebe646 commit bfdb58a

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

contrib/test.sh

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,6 @@ then
88
alias cargo="cargo +$TOOLCHAIN"
99
fi
1010

11-
pin_common_verions() {
12-
cargo generate-lockfile --verbose
13-
cargo update -p cc --precise "1.0.41" --verbose
14-
cargo update -p serde --precise "1.0.98" --verbose
15-
cargo update -p serde_derive --precise "1.0.98" --verbose
16-
}
17-
18-
# Pin `cc` for Rust 1.29
19-
if [ "$PIN_VERSIONS" = true ]; then
20-
pin_common_verions
21-
cargo update -p byteorder --precise "1.3.4"
22-
fi
23-
2411
if [ "$DO_COV" = true ]
2512
then
2613
export RUSTFLAGS="-C link-dead-code"
@@ -95,10 +82,5 @@ then
9582
cd dep_test
9683
echo 'bitcoin = { path = "..", features = ["use-serde"] }' >> Cargo.toml
9784

98-
# Pin `cc` for Rust 1.29
99-
if [ -n "$PIN_VERSIONS" ]; then
100-
pin_common_verions
101-
fi
102-
10385
cargo test --verbose
10486
fi

0 commit comments

Comments
 (0)