Skip to content

Commit 03eea88

Browse files
committed
Add additional MSRV pin for quote
1 parent 063947f commit 03eea88

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/ci-tests.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ function PIN_RELEASE_DEPS {
1414
# syn 2.0.107 requires rustc 1.68.0
1515
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p syn --precise "2.0.106" --verbose
1616

17+
# quote 1.0.42 requires rustc 1.68.0
18+
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p quote --precise "1.0.41" --verbose
19+
1720
return 0 # Don't fail the script if our rustc is higher than the last check
1821
}
1922

@@ -54,6 +57,7 @@ echo -e "\n\nTesting upgrade from prior versions of LDK"
5457
pushd lightning-tests
5558
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p regex --precise "1.9.6" --verbose
5659
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p syn --precise "2.0.106" --verbose
60+
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p quote --precise "1.0.41" --verbose
5761
cargo test
5862
popd
5963

@@ -125,6 +129,7 @@ echo -e "\n\nTesting no_std build on a downstream no-std crate"
125129
# check no-std compatibility across dependencies
126130
pushd no-std-check
127131
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p syn --precise "2.0.106" --verbose
132+
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p quote --precise "1.0.41" --verbose
128133
cargo check --verbose --color always
129134
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
130135
popd

0 commit comments

Comments
 (0)