From db720edeefbcf052fb5c7a95b4f41d521d7b80d6 Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 28 Jul 2025 18:05:54 -0500 Subject: [PATCH] ci: move comment breaking up 'rustflags' for coverage linking --- .github/workflows/coverage.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index 9fcf0b4..8ee1c8f 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -43,12 +43,12 @@ jobs: - name: Install cargo-tarpaulin run: cargo install cargo-tarpaulin + # Note: We manually link zlib. This should be synchronized with the flags set for Linux in .cargo/config.toml. - name: Generate coverage report run: | cargo tarpaulin \ --out Html \ --output-dir coverage \ - # Manually link zlib. This should be synchronized with the flags set for Linux in .cargo/config.toml. --rustflags="-C link-arg=-lz" - name: Upload coverage to Coveralls