Compare commits

...

1 Commits

Author SHA1 Message Date
f241e85d8f ci: set rustflags for cargo-tarpaulin build linking 2025-07-28 17:32:53 -05:00

View File

@@ -44,7 +44,12 @@ jobs:
run: cargo install cargo-tarpaulin run: cargo install cargo-tarpaulin
- name: Generate coverage report - name: Generate coverage report
run: cargo tarpaulin --out Html --output-dir coverage 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 - name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2 uses: coverallsapp/github-action@v2