Skip to content

Commit 5b20403

Browse files
authored
Merge pull request #220 from tnull/2023-12-homogenous-ci
Make CI scripts more homogeneous
2 parents 6a8c9d9 + 4b8220b commit 5b20403

21 files changed

+878
-1092
lines changed

.github/workflows/cln.yml renamed to .github/workflows/cln-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Continuous Integration Checks - CLN
1+
name: CI Checks - CLN Integration Tests
22

33
on: [push, pull_request]
44

.github/workflows/kotlin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Continuous Integration Checks - Kotlin
1+
name: CI Checks - Kotlin Tests
22

33
on: [push, pull_request]
44

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Continuous Integration Checks - Python
1+
name: CI Checks - Python Tests
22

33
on: [push, pull_request]
44

.github/workflows/build.yml renamed to .github/workflows/rust.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Continuous Integration Checks
1+
name: CI Checks - Rust Tests
22

33
on: [push, pull_request]
44

@@ -46,13 +46,18 @@ jobs:
4646
cargo update -p proptest --precise "1.2.0" --verbose # proptest 1.3.0 requires rustc 1.64.0
4747
cargo update -p reqwest --precise "0.11.20" --verbose # reqwest 0.11.21 broke 1.63.0 MSRV
4848
cargo update -p regex --precise "1.9.6" --verbose # regex 1.10.0 requires rustc 1.65.0
49-
cargo update -p jobserver --precise "0.1.26" --verbose # jobserver 0.1.27 requires rustc 1.66.0
50-
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5" --verbose # zstd-sys 2.0.9+zstd.1.5.5 requires rustc 1.64.0
51-
cargo update -p petgraph --precise "0.6.3" --verbose # petgraph v0.6.4, requires rustc 1.64 or newer
5249
cargo update -p home --precise "0.5.5" --verbose # home v0.5.9, requires rustc 1.70 or newer
5350
- name: Set RUSTFLAGS to deny warnings
5451
if: "matrix.toolchain == 'stable'"
5552
run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"
53+
- name: Download bitcoind/electrs and set environment variables
54+
if: "matrix.platform != 'windows-latest'"
55+
run: |
56+
source ./scripts/download_bitcoind_electrs.sh
57+
cp "$BITCOIND_EXE" "$HOME"/bitcoind
58+
cp "$ELECTRS_EXE" "$HOME"/electrs
59+
echo "BITCOIND_EXE=$HOME/bitcoind" >> "$GITHUB_ENV"
60+
echo "ELECTRS_EXE=$HOME/electrs" >> "$GITHUB_ENV"
5661
- name: Build on Rust ${{ matrix.toolchain }}
5762
run: cargo build --verbose --color always
5863
- name: Build with UniFFI support on Rust ${{ matrix.toolchain }}
@@ -69,10 +74,12 @@ jobs:
6974
run: cargo check --release --features uniffi --verbose --color always
7075
- name: Test on Rust ${{ matrix.toolchain }}
7176
if: "matrix.platform != 'windows-latest'"
72-
run: cargo test
77+
run: |
78+
RUSTFLAGS="--cfg no_download" cargo test
7379
- name: Test with UniFFI support on Rust ${{ matrix.toolchain }}
7480
if: "matrix.platform != 'windows-latest' && matrix.build-uniffi"
75-
run: cargo test --features uniffi
81+
run: |
82+
RUSTFLAGS="--cfg no_download" cargo test --features uniffi
7683
- name: Check formatting on Rust ${{ matrix.toolchain }}
7784
if: matrix.check-fmt
7885
run: rustup component add rustfmt && cargo fmt --all -- --check

.github/workflows/vss-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: VSS Integration Test
1+
name: CI Checks - VSS Integration Tests
22

33
on: [push, pull_request]
44

@@ -74,8 +74,8 @@ jobs:
7474
run: |
7575
cd ldk-node
7676
export TEST_VSS_BASE_URL="http://localhost:8080/vss"
77-
RUSTFLAGS="--cfg=vss_test --cfg=vss" cargo build --verbose --color always
78-
RUSTFLAGS="--cfg=vss_test --cfg=vss" cargo test -- --nocapture
77+
RUSTFLAGS="--cfg vss_test --cfg vss" cargo build --verbose --color always
78+
RUSTFLAGS="--cfg vss_test --cfg vss" cargo test --test integration_tests_vss
7979
8080
- name: Cleanup
8181
run: |

Cargo.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,19 @@ winapi = { version = "0.3", features = ["winbase"] }
7676
[dev-dependencies]
7777
lightning = { version = "0.0.119", features = ["std", "_test_utils"] }
7878
#lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["std", "_test_utils"] }
79-
electrsd = { version = "0.26.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] }
80-
electrum-client = { version = "0.18.0", default-features = true }
79+
electrum-client = { version = "0.15.1", default-features = true }
80+
bitcoincore-rpc = { version = "0.17.0", default-features = false }
8181
proptest = "1.0.0"
8282
regex = "1.5.6"
8383

84+
[target.'cfg(not(no_download))'.dev-dependencies]
85+
electrsd = { version = "0.26.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] }
86+
87+
[target.'cfg(no_download)'.dev-dependencies]
88+
electrsd = { version = "0.26.0", features = ["legacy"] }
89+
8490
[target.'cfg(cln_test)'.dev-dependencies]
8591
clightningrpc = { version = "0.3.0-beta.8", default-features = false }
86-
bitcoincore-rpc = { version = "0.17.0", default-features = false }
8792

8893
[build-dependencies]
8994
uniffi = { version = "0.25.1", features = ["build"], optional = true }

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ hard_tabs = true # use tab characters for indentation, spaces for alignment
22
use_field_init_shorthand = true
33
max_width = 100
44
use_small_heuristics = "Max"
5-
fn_args_layout = "Compressed"
5+
fn_params_layout = "Compressed"

scripts/download_bitcoind_electrs.sh

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Our Esplora-based tests require `electrs` and `bitcoind`
2+
# binaries. Here, we download the binaries, validate them, and export their
3+
# location via `ELECTRS_EXE`/`BITCOIND_EXE` which will be used by the
4+
# `electrsd`/`bitcoind` crates in our tests.
5+
6+
HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
7+
ELECTRS_DL_ENDPOINT="https://github.com/RCasatta/electrsd/releases/download/electrs_releases"
8+
ELECTRS_VERSION="esplora_a33e97e1a1fc63fa9c20a116bb92579bbf43b254"
9+
BITCOIND_DL_ENDPOINT="https://bitcoincore.org/bin/"
10+
BITCOIND_VERSION="25.1"
11+
if [[ "$HOST_PLATFORM" == *linux* ]]; then
12+
ELECTRS_DL_FILE_NAME=electrs_linux_"$ELECTRS_VERSION".zip
13+
ELECTRS_DL_HASH="865e26a96e8df77df01d96f2f569dcf9622fc87a8d99a9b8fe30861a4db9ddf1"
14+
BITCOIND_DL_FILE_NAME=bitcoin-"$BITCOIND_VERSION"-x86_64-linux-gnu.tar.gz
15+
BITCOIND_DL_HASH="a978c407b497a727f0444156e397b50491ce862d1f906fef9b521415b3611c8b"
16+
elif [[ "$HOST_PLATFORM" == *darwin* ]]; then
17+
ELECTRS_DL_FILE_NAME=electrs_macos_"$ELECTRS_VERSION".zip
18+
ELECTRS_DL_HASH="2d5ff149e8a2482d3658e9b386830dfc40c8fbd7c175ca7cbac58240a9505bcd"
19+
BITCOIND_DL_FILE_NAME=bitcoin-"$BITCOIND_VERSION"-x86_64-apple-darwin.tar.gz
20+
BITCOIND_DL_HASH="1acfde0ec3128381b83e3e5f54d1c7907871d324549129592144dd12a821eff1"
21+
else
22+
echo "\n\nUnsupported platform: $HOST_PLATFORM Exiting.."
23+
exit 1
24+
fi
25+
26+
DL_TMP_DIR=$(mktemp -d)
27+
trap 'rm -rf -- "$DL_TMP_DIR"' EXIT
28+
29+
pushd "$DL_TMP_DIR"
30+
ELECTRS_DL_URL="$ELECTRS_DL_ENDPOINT"/"$ELECTRS_DL_FILE_NAME"
31+
curl -L -o "$ELECTRS_DL_FILE_NAME" "$ELECTRS_DL_URL"
32+
echo "$ELECTRS_DL_HASH $ELECTRS_DL_FILE_NAME"|shasum -a 256 -c
33+
unzip "$ELECTRS_DL_FILE_NAME"
34+
export ELECTRS_EXE="$DL_TMP_DIR"/electrs
35+
chmod +x "$ELECTRS_EXE"
36+
37+
BITCOIND_DL_URL="$BITCOIND_DL_ENDPOINT"/bitcoin-core-"$BITCOIND_VERSION"/"$BITCOIND_DL_FILE_NAME"
38+
curl -L -o "$BITCOIND_DL_FILE_NAME" "$BITCOIND_DL_URL"
39+
echo "$BITCOIND_DL_HASH $BITCOIND_DL_FILE_NAME"|shasum -a 256 -c
40+
tar xzf "$BITCOIND_DL_FILE_NAME"
41+
export BITCOIND_EXE="$DL_TMP_DIR"/bitcoin-"$BITCOIND_VERSION"/bin/bitcoind
42+
chmod +x "$BITCOIND_EXE"
43+
popd

src/event.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -795,8 +795,7 @@ where
795795
#[cfg(test)]
796796
mod tests {
797797
use super::*;
798-
use crate::test::utils::TestLogger;
799-
use lightning::util::test_utils::TestStore;
798+
use lightning::util::test_utils::{TestLogger, TestStore};
800799

801800
#[test]
802801
fn event_queue_persistence() {

src/io/sqlite_store/migrations.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ pub(super) fn migrate_schema(
6969
#[cfg(test)]
7070
mod tests {
7171
use crate::io::sqlite_store::SqliteStore;
72-
use crate::io::test_utils::do_read_write_remove_list_persist;
73-
use crate::test::utils::random_storage_path;
72+
use crate::io::test_utils::{do_read_write_remove_list_persist, random_storage_path};
7473

7574
use lightning::util::persist::KVStore;
7675

0 commit comments

Comments
 (0)