Skip to content

Commit c0ea31e

Browse files
authored
Merge pull request #2386 from TheBlueMatt/2023-06-macos-msrv
Fix 1.54- builds with the `backtrace` feature due to MSRV breakage
2 parents ab80fcf + 6bbe1a4 commit c0ea31e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ci/ci-tests.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
1111
# Sadly the log crate is always a dependency of tokio until 1.20, and has no reasonable MSRV guarantees
1212
[ "$RUSTC_MINOR_VERSION" -lt 49 ] && cargo update -p log --precise "0.4.18" --verbose
1313

14+
# The addr2line v0.20 crate (a dependency of `backtrace` starting with 0.3.68) relies on 1.55+
15+
[ "$RUSTC_MINOR_VERSION" -lt 55 ] && cargo update -p backtrace --precise "0.3.67" --verbose
16+
1417
[ "$LDK_COVERAGE_BUILD" != "" ] && export RUSTFLAGS="-C link-dead-code"
1518

1619
export RUST_BACKTRACE=1

0 commit comments

Comments
 (0)