From c57baad7e8b71b741e1d7c5d01951f027836b786 Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 19 Mar 2021 11:33:25 +1000 Subject: [PATCH] Merge pull request #1923 from ZcashFoundation/coverage-no-incremental Disable incremental compilation in coverage builds to avoid disk space errors. --- .github/workflows/coverage.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c154c80e..38409897 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -32,6 +32,7 @@ jobs: RUSTFLAGS: -Zinstrument-coverage -C link-dead-code -C debuginfo=2 LLVM_PROFILE_FILE: "${{ github.workspace }}/test.%p.profraw" ZEBRA_SKIP_NETWORK_TESTS: 1 + CARGO_INCREMENTAL: 0 run: | cargo test cargo test --no-run --message-format=json | jq -r "select(.profile.test == true) | .filenames[]" | grep -v dSYM - > filenames.txt