From f5410052918a85e3a896b0cd32c2f62f63a6d059 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 16 Sep 2024 13:54:53 +0800 Subject: [PATCH] fix: remove LLVM profiling --- .github/workflows/my_codecov.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/my_codecov.yml b/.github/workflows/my_codecov.yml index 9d9465d22..b0d1c168e 100644 --- a/.github/workflows/my_codecov.yml +++ b/.github/workflows/my_codecov.yml @@ -37,8 +37,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | cargo binstall -y grcov; - rustup component add llvm-tools-preview - CARGO_INCREMENTAL=0 RUSTFLAGS='-Cinstrument-coverage' LLVM_PROFILE_FILE='cargo-test-%p-%m.profraw' cargo test -p nomos-da-network-core --no-default-features + CARGO_INCREMENTAL=0 cargo test --no-default-features --features libp2p mkdir /tmp/cov; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov; env: