Skip to content

Commit

Permalink
fix(ci): use the correct tar command for extracting grcov archive
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Feb 3, 2022
1 parent c47133a commit a3f3aa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
export CARGO_INCREMENTAL=0
export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"
export RUSTDOCFLAGS="-Cpanic=abort"
curl -L https://github.com/mozilla/grcov/releases/latest/download/grcov-v0.8.6-x86_64-unknown-linux-gnu.tar.gz | tar jxf -
curl -L https://github.com/mozilla/grcov/releases/latest/download/grcov-v0.8.6-x86_64-unknown-linux-gnu.tar.gz | tar xzf -
cargo test --verbose $CARGO_OPTIONS
zip -0 ccov.zip `find . \( -name "git_cliff*.gc*" \) -print`;
./grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore "/*" -o lcov.info;
Expand Down

0 comments on commit a3f3aa6

Please sign in to comment.