Skip to content

Commit e0707d4

Browse files
committed
Update MSRV compatibility pins in CI
1 parent 2bf621b commit e0707d4

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

ci/ci-tests.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ function PIN_RELEASE_DEPS {
2929
# Starting with version 1.0.21, the `ryu` crate has an MSRV of rustc 1.68
3030
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p ryu --precise "1.0.20" --verbose
3131

32+
# Starting with version 1.0.23, the `unicode-ident` crate has an MSRV of rustc 1.71
33+
[ "$RUSTC_MINOR_VERSION" -lt 71 ] && cargo update -p unicode-ident --precise 1.0.22
34+
35+
# Starting with version 0.2.184, the `libc` crate has an MSRV of rustc 1.65
36+
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p libc --precise 0.2.183 --verbose
37+
3238
return 0 # Don't fail the script if our rustc is higher than the last check
3339
}
3440

@@ -75,6 +81,7 @@ pushd lightning-tests
7581
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p quote --precise "1.0.41" --verbose
7682
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p regex --precise "1.9.6" --verbose
7783
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p proc-macro2 --precise "1.0.103" --verbose
84+
[ "$RUSTC_MINOR_VERSION" -lt 71 ] && cargo update -p unicode-ident --precise 1.0.22
7885
cargo test
7986
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
8087
popd

0 commit comments

Comments
 (0)