Skip to content

Commit 8cc0cac

Browse files
committed
ci: disable FreeBSD coverage for now
see rust-lang/rust#94616
1 parent d8a1936 commit 8cc0cac

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.cirrus.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ task:
1919
- rustup component add llvm-tools-preview
2020
test_script:
2121
- . $HOME/.cargo/env
22-
- env LLVM_PROFILE_FILE="calloop-%p-%m.profraw" RUSTFLAGS="-Zinstrument-coverage" cargo test --all-features
23-
- 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
24-
- bash -c 'bash <(curl -s https://codecov.io/bash) -f lcov.info'
22+
- cargo test --all-features
23+
# coverage is disabled for now
24+
# see https://github.com/rust-lang/rust/issues/94616
25+
# - env LLVM_PROFILE_FILE="calloop-%p-%m.profraw" RUSTFLAGS="-Zinstrument-coverage" cargo test --all-features
26+
# - 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
27+
# - bash -c 'bash <(curl -s https://codecov.io/bash) -f lcov.info'

0 commit comments

Comments
 (0)