Skip to content

Commit

Permalink
ci: disable FreeBSD coverage for now
Browse files Browse the repository at this point in the history
  • Loading branch information
elinorbgr committed Mar 5, 2022
1 parent d8a1936 commit 8cc0cac
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ task:
- rustup component add llvm-tools-preview
test_script:
- . $HOME/.cargo/env
- env LLVM_PROFILE_FILE="calloop-%p-%m.profraw" RUSTFLAGS="-Zinstrument-coverage" cargo test --all-features
- grcov . --binary-path ./target/debug -s . -t lcov --branch --llvm --ignore-not-existing --keep-only "src/sys/*" --excl-br-start "mod tests \{" --excl-start "mod tests \{" --excl-br-line "#\[derive\(" --excl-line "#\[derive\(" -o lcov.info
- bash -c 'bash <(curl -s https://codecov.io/bash) -f lcov.info'
- cargo test --all-features
# coverage is disabled for now
# see https://github.com/rust-lang/rust/issues/94616
# - env LLVM_PROFILE_FILE="calloop-%p-%m.profraw" RUSTFLAGS="-Zinstrument-coverage" cargo test --all-features
# - grcov . --binary-path ./target/debug -s . -t lcov --branch --llvm --ignore-not-existing --keep-only "src/sys/*" --excl-br-start "mod tests \{" --excl-start "mod tests \{" --excl-br-line "#\[derive\(" --excl-line "#\[derive\(" -o lcov.info
# - bash -c 'bash <(curl -s https://codecov.io/bash) -f lcov.info'

0 comments on commit 8cc0cac

Please sign in to comment.