Skip to content

Commit 9753e6d

Browse files
committed
Pin proptest again to fix CI
.. `proptest` 1.9.0 was just released, now requiring rustc 1.82.
1 parent 98c83df commit 9753e6d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/ci-tests.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -eox pipefail
44

55
# Currently unused as we don't have to pin anything for MSRV:
6-
#RUSTC_MINOR_VERSION=$(rustc --version | awk '{ split($2,a,"."); print a[2] }')
6+
RUSTC_MINOR_VERSION=$(rustc --version | awk '{ split($2,a,"."); print a[2] }')
77

88
# Some crates require pinning to meet our MSRV even for our downstream users,
99
# which we do here.
@@ -17,6 +17,9 @@ PIN_RELEASE_DEPS # pin the release dependencies in our main workspace
1717
# The backtrace v0.3.75 crate relies on rustc 1.82
1818
[ "$RUSTC_MINOR_VERSION" -lt 82 ] && cargo update -p backtrace --precise "0.3.74" --verbose
1919

20+
# proptest 1.9.0 requires rustc 1.82.0
21+
[ "$RUSTC_MINOR_VERSION" -lt 82 ] && cargo update -p proptest --precise "1.8.0" --verbose
22+
2023
export RUST_BACKTRACE=1
2124

2225
echo -e "\n\nChecking the workspace, except lightning-transaction-sync."

0 commit comments

Comments
 (0)