X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ci%2Fci-tests.sh;h=e8137380705e1d33da8f6d090b8987853907b2d6;hb=38f12698a7fba7e03fcb18633ff91747da546ee0;hp=40e118a2fd05094c965d6fecd4b6ae61505e1769;hpb=a358ba2e68c84d19e70d1d45d3f677eaf324e09d;p=rust-lightning diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index 40e118a2f..e81373807 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -14,6 +14,9 @@ HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')" # The addr2line v0.20 crate (a dependency of `backtrace` starting with 0.3.68) relies on 1.55+ [ "$RUSTC_MINOR_VERSION" -lt 55 ] && cargo update -p backtrace --precise "0.3.67" --verbose +# The serde_json crate switched to Rust edition 2021 starting with v1.0.101, i.e., has MSRV of 1.56 +[ "$RUSTC_MINOR_VERSION" -lt 56 ] && cargo update -p serde_json --precise "1.0.100" --verbose + [ "$LDK_COVERAGE_BUILD" != "" ] && export RUSTFLAGS="-C link-dead-code" export RUST_BACKTRACE=1