From: Elias Rohrer Date: Tue, 12 Dec 2023 16:25:09 +0000 (+0100) Subject: Deny warnings in CI X-Git-Tag: v0.0.120~20^2~10 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=8471644a2dd1ba9c40f0cd429a347544818babb2;p=rust-lightning Deny warnings in CI Since we recently got rid of our last build/test/doc warnings, we now deny warnings via `-D warnings` in CI, enforcing no new ones are introduced. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 65be3fae..ad5e1fc5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,6 +39,9 @@ jobs: run: | sudo apt-get -y install shellcheck shellcheck ci/ci-tests.sh + - name: Set RUSTFLAGS to deny warnings + if: "matrix.toolchain == '1.63.0'" + run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV" - name: Run CI script shell: bash # Default on Winblows is powershell run: CI_MINIMIZE_DISK_USAGE=1 ./ci/ci-tests.sh diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index ca8e20f0..3eccc487 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -94,14 +94,14 @@ if [[ "$HOST_PLATFORM" != *windows* ]]; then DOWNLOAD_ELECTRS_AND_BITCOIND - RUSTFLAGS="--cfg no_download" cargo test --verbose --color always --features esplora-blocking - RUSTFLAGS="--cfg no_download" cargo check --verbose --color always --features esplora-blocking - RUSTFLAGS="--cfg no_download" cargo test --verbose --color always --features esplora-async - RUSTFLAGS="--cfg no_download" cargo check --verbose --color always --features esplora-async - RUSTFLAGS="--cfg no_download" cargo test --verbose --color always --features esplora-async-https - RUSTFLAGS="--cfg no_download" cargo check --verbose --color always --features esplora-async-https - RUSTFLAGS="--cfg no_download" cargo test --verbose --color always --features electrum - RUSTFLAGS="--cfg no_download" cargo check --verbose --color always --features electrum + RUSTFLAGS="$RUSTFLAGS --cfg no_download" cargo test --verbose --color always --features esplora-blocking + RUSTFLAGS="$RUSTFLAGS --cfg no_download" cargo check --verbose --color always --features esplora-blocking + RUSTFLAGS="$RUSTFLAGS --cfg no_download" cargo test --verbose --color always --features esplora-async + RUSTFLAGS="$RUSTFLAGS --cfg no_download" cargo check --verbose --color always --features esplora-async + RUSTFLAGS="$RUSTFLAGS --cfg no_download" cargo test --verbose --color always --features esplora-async-https + RUSTFLAGS="$RUSTFLAGS --cfg no_download" cargo check --verbose --color always --features esplora-async-https + RUSTFLAGS="$RUSTFLAGS --cfg no_download" cargo test --verbose --color always --features electrum + RUSTFLAGS="$RUSTFLAGS --cfg no_download" cargo check --verbose --color always --features electrum popd fi @@ -125,7 +125,7 @@ popd echo -e "\n\nBuilding with all Log-Limiting features" pushd lightning grep '^max_level_' Cargo.toml | awk '{ print $1 }'| while read -r FEATURE; do - cargo check --verbose --color always --features "$FEATURE" + RUSTFLAGS="$RUSTFLAGS -A unused_variables -A unused_macros -A unused_imports -A dead_code" cargo check --verbose --color always --features "$FEATURE" done popd @@ -138,9 +138,9 @@ done for DIR in lightning lightning-invoice lightning-rapid-gossip-sync; do # check if there is a conflict between no-std and the c_bindings cfg - RUSTFLAGS="--cfg=c_bindings" cargo test -p $DIR --verbose --color always --no-default-features --features=no-std + RUSTFLAGS="$RUSTFLAGS --cfg=c_bindings" cargo test -p $DIR --verbose --color always --no-default-features --features=no-std done -RUSTFLAGS="--cfg=c_bindings" cargo test --verbose --color always +RUSTFLAGS="$RUSTFLAGS --cfg=c_bindings" cargo test --verbose --color always # Note that outbound_commitment_test only runs in this mode because of hardcoded signature values pushd lightning @@ -174,5 +174,5 @@ if [ -f "$(which arm-none-eabi-gcc)" ]; then fi echo -e "\n\nTest cfg-flag builds" -RUSTFLAGS="$RUSTFLAGS --cfg=taproot" cargo test --verbose --color always -p lightning -RUSTFLAGS="$RUSTFLAGS --cfg=async_signing" cargo test --verbose --color always -p lightning +RUSTFLAGS="--cfg=taproot" cargo test --verbose --color always -p lightning +RUSTFLAGS="--cfg=async_signing" cargo test --verbose --color always -p lightning