This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 155
Trying to get coverage from clang #55
Comments
codecov/codecov-python#52 is related |
Use quotes |
Same issue. Today I've compiled program using
So we have to use |
My solution looks like: if ([ -n "$CI" ] && [ -n "$TRAVIS" ]); then
curl -s "https://codecov.io/bash" > "codecov.sh"
chmod +x "codecov.sh"
fi
...
if (echo "$toolchain" | grep -q "clang/coverage.cmake$"); then
./codecov.sh -x "llvm-cov gcov"
else
./codecov.sh -x "gcov"
fi |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I do not know if it will actually work in the end, but
The problem: i run codecov bash script with
-x llvm-cov-3.8 -a gcov
, which i assume should produce what the script expects.However,
$gcov_exe
is also run with some hardcoded arguments:-pb
or-pbcu
codecov-bash/codecov
Line 805 in ef00447
llvm-cov gcov
does not support them, and fails https://travis-ci.org/darktable-org/rawspeed/builds/198960321#L1115Perhaps these
-pb
or-pbcu
should be configurable somehow?The text was updated successfully, but these errors were encountered: