Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lightningdevkit/rust-lightning
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 50e765dd821fcf92f4a1b610fa1ea94d061d6686
Choose a base ref
..
head repository: lightningdevkit/rust-lightning
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ddee2052cb75fdb369397a23677067ce0ff8d032
Choose a head ref
Showing with 4 additions and 3 deletions.
  1. +4 −3 ci/ci-tests.sh
7 changes: 4 additions & 3 deletions ci/ci-tests.sh
Original file line number Diff line number Diff line change
@@ -14,9 +14,6 @@ function PIN_RELEASE_DEPS {
# The addr2line v0.21 crate (a dependency of `backtrace` starting with 0.3.69) relies on rustc 1.65
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p backtrace --precise "0.3.68" --verbose

# jobserver 0.1.27 requires rustc 1.66.0
[ "$RUSTC_MINOR_VERSION" -lt 66 ] && cargo update -p jobserver --precise "0.1.26" --verbose

return 0 # Don't fail the script if our rustc is higher than the last check
}

@@ -43,6 +40,10 @@ popd
if [[ "$HOST_PLATFORM" != *windows* ]]; then
echo -e "\n\nBuilding and testing Transaction Sync Clients with features"
pushd lightning-transaction-sync

# jobserver 0.1.27 requires rustc 1.66.0
[ "$RUSTC_MINOR_VERSION" -lt 66 ] && cargo update -p jobserver --precise "0.1.26" --verbose

cargo test --verbose --color always --features esplora-blocking
cargo check --verbose --color always --features esplora-blocking
cargo test --verbose --color always --features esplora-async