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:
parent
a06d2170b0
commit
07111fb7bb
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue