fix: Codecov workflow output directory cleanup (#866)
* fix: self-hosted runner needs clean up * fix: remove on push trigger
This commit is contained in:
parent
3213453c43
commit
07b215e885
|
@ -48,6 +48,7 @@ jobs:
|
||||||
args: --all --no-default-features --features libp2p
|
args: --all --no-default-features --features libp2p
|
||||||
- name: Run Grcov
|
- name: Run Grcov
|
||||||
run: |
|
run: |
|
||||||
|
rm -rf /tmp/coverage
|
||||||
cargo binstall -y grcov;
|
cargo binstall -y grcov;
|
||||||
mkdir /tmp/coverage;
|
mkdir /tmp/coverage;
|
||||||
grcov . --binary-path ./target/debug -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/coverage/tests.lcov;
|
grcov . --binary-path ./target/debug -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/coverage/tests.lcov;
|
||||||
|
|
Loading…
Reference in New Issue