Use llvm-cov instead of gcov

@marco-c called this a hack, but since grcov isn't working
out-of-the-box (panics on call to gcov), we'll take a stab at using
llvm-cov.
This commit is contained in:
Greg Fitzgerald 2018-06-24 11:32:06 -06:00 committed by Greg Fitzgerald
parent a06d2170b0
commit 07111fb7bb
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ ls -l target/cov/report/index.html
if [[ -z "$CODECOV_TOKEN" ]]; then
echo CODECOV_TOKEN undefined
else
bash <(curl -s https://codecov.io/bash)
bash <(curl -s https://codecov.io/bash) -x 'llvm-cov gcov'
fi
exit 0