7dad1436e989136ff55dcfd06408329b99059266
[rust-lightning] / ci / ci-tests.sh
1 #!/bin/bash
2 set -eox pipefail
3
4 RUSTC_MINOR_VERSION=$(rustc --version | awk '{ split($2,a,"."); print a[2] }')
5 HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
6
7 # Tokio MSRV on versions 1.17 through 1.26 is rustc 1.49. Above 1.26 MSRV is 1.56.
8 [ "$RUSTC_MINOR_VERSION" -lt 49 ] && cargo update -p tokio --precise "1.14.0" --verbose
9 [[ "$RUSTC_MINOR_VERSION" -gt 48  &&  "$RUSTC_MINOR_VERSION" -lt 56 ]] && cargo update -p tokio --precise "1.26.0" --verbose
10 [ "$LDK_COVERAGE_BUILD" != "" ] && export RUSTFLAGS="-C link-dead-code"
11
12 export RUST_BACKTRACE=1
13
14 echo -e "\n\nBuilding and testing all workspace crates..."
15 cargo build --verbose --color always
16 cargo test --verbose --color always
17
18 echo -e "\n\nBuilding with all Log-Limiting features"
19 pushd lightning
20 grep '^max_level_' Cargo.toml | awk '{ print $1 }'| while read -r FEATURE; do
21         cargo build --verbose --color always --features "$FEATURE"
22 done
23 popd
24
25 if [ "$RUSTC_MINOR_VERSION" -gt 51 ]; then # Current `object` MSRV, subject to change
26         echo -e "\n\nTest backtrace-debug builds"
27         pushd lightning
28         cargo test --verbose --color always --features backtrace
29         popd
30 fi
31
32 echo -e "\n\nTesting no-std flags in various combinations"
33 for DIR in lightning lightning-invoice lightning-rapid-gossip-sync; do
34         pushd $DIR
35         cargo test --verbose --color always --no-default-features --features no-std
36         # check if there is a conflict between no-std and the default std feature
37         cargo test --verbose --color always --features no-std
38         # check that things still pass without grind_signatures
39         # note that outbound_commitment_test only runs in this mode, because of hardcoded signature values
40         cargo test --verbose --color always --no-default-features --features std
41         # check if there is a conflict between no-std and the c_bindings cfg
42         RUSTFLAGS="--cfg=c_bindings" cargo test --verbose --color always --no-default-features --features=no-std
43         popd
44 done
45 # This one only works for lightning-invoice
46 pushd lightning-invoice
47 # check that compile with no-std and serde works in lightning-invoice
48 cargo test --verbose --color always --no-default-features --features no-std --features serde
49 popd
50
51 echo -e "\n\nTesting no-std build on a downstream no-std crate"
52 # check no-std compatibility across dependencies
53 pushd no-std-check
54 cargo check --verbose --color always --features lightning-transaction-sync
55 popd
56
57 if [ -f "$(which arm-none-eabi-gcc)" ]; then
58         pushd no-std-check
59         cargo build --target=thumbv7m-none-eabi
60         popd
61 fi
62
63 echo -e "\n\nBuilding and testing Block Sync Clients with features"
64 pushd lightning-block-sync
65 cargo build --verbose --color always --features rest-client
66 cargo test --verbose --color always --features rest-client
67 cargo build --verbose --color always --features rpc-client
68 cargo test --verbose --color always --features rpc-client
69 cargo build --verbose --color always --features rpc-client,rest-client
70 cargo test --verbose --color always --features rpc-client,rest-client
71 cargo build --verbose --color always --features rpc-client,rest-client,tokio
72 cargo test --verbose --color always --features rpc-client,rest-client,tokio
73 popd
74
75 if [[ $RUSTC_MINOR_VERSION -gt 67 && "$HOST_PLATFORM" != *windows* ]]; then
76         echo -e "\n\nBuilding and testing Transaction Sync Clients with features"
77         pushd lightning-transaction-sync
78         cargo build --verbose --color always --features esplora-blocking
79         cargo test --verbose --color always --features esplora-blocking
80         cargo build --verbose --color always --features esplora-async
81         cargo test --verbose --color always --features esplora-async
82         cargo build --verbose --color always --features esplora-async-https
83         cargo test --verbose --color always --features esplora-async-https
84         popd
85 fi
86
87 echo -e "\n\nTest futures builds"
88 pushd lightning-background-processor
89 cargo test --verbose --color always --no-default-features --features futures
90 popd
91
92 if [ "$RUSTC_MINOR_VERSION" -gt 55 ]; then
93         echo -e "\n\nTest Custom Message Macros"
94         pushd lightning-custom-message
95         cargo test --verbose --color always
96         popd
97 fi
98
99 echo -e "\n\nTest anchors builds"
100 pushd lightning
101 RUSTFLAGS="$RUSTFLAGS --cfg=anchors" cargo test --verbose --color always -p lightning
102 echo -e "\n\nTest Taproot builds"
103 RUSTFLAGS="$RUSTFLAGS --cfg=anchors --cfg=taproot" cargo test --verbose --color always -p lightning
104 popd