From: Elias Rohrer Date: Tue, 18 Apr 2023 14:27:02 +0000 (+0200) Subject: Actually test `futures` builds X-Git-Tag: v0.0.115~7^2~2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=36bf817ec70ff9f5ea3ba0317555a97f206a038f;p=rust-lightning Actually test `futures` builds Currently the BP `futures` tests rely on `std`. In order to actually have them run, we should enable `std`, i.e., remove `--no-default-features`. --- diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index 7dad1436e..37d8e06de 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -86,7 +86,7 @@ fi echo -e "\n\nTest futures builds" pushd lightning-background-processor -cargo test --verbose --color always --no-default-features --features futures +cargo test --verbose --color always --features futures popd if [ "$RUSTC_MINOR_VERSION" -gt 55 ]; then