From 6bbe1a4dd1bf06b2d88d4814800de0d39dc4b7d0 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 30 Jun 2023 03:10:29 +0000 Subject: [PATCH] Fix 1.54- builds with the `backtrace` feature due to MSRV breakage The test-only `backtrace` feature broke on rustc prior to 1.55. --- ci/ci-tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index b3af73f2..40e118a2 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 -- 2.30.2