File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff 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"
5457pushd 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
5761cargo test
5862popd
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
126130pushd 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
128133cargo check --verbose --color always
129134[ " $CI_MINIMIZE_DISK_USAGE " != " " ] && cargo clean
130135popd
You can’t perform that action at this time.
0 commit comments