X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ci%2Fci-tests.sh;h=40e118a2fd05094c965d6fecd4b6ae61505e1769;hb=6fbeea02ed9fa1690b1cd3f5da4c5678bab2d720;hp=b3af73f2169bc2cd91784c3801cef03307dd7525;hpb=82b646c548b489188b2be54cc36890302378da92;p=rust-lightning diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index b3af73f21..40e118a2f 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -11,6 +11,9 @@ HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')" # Sadly the log crate is always a dependency of tokio until 1.20, and has no reasonable MSRV guarantees [ "$RUSTC_MINOR_VERSION" -lt 49 ] && cargo update -p log --precise "0.4.18" --verbose +# 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 + [ "$LDK_COVERAGE_BUILD" != "" ] && export RUSTFLAGS="-C link-dead-code" export RUST_BACKTRACE=1