ci: attempt to fix llvm-cov show
Some checks are pending
continuous-integration/drone/pr Build is running

This commit is contained in:
light7734 2025-12-13 14:59:22 +03:30
parent 8b0f286f39
commit 1608fb4b5c
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -49,8 +49,8 @@ find ./build/modules -type f -name "*.profraw" -exec rm -fv {} +
LLVM_COV_SHOW=$(
llvm-cov show \
-instr-profile='./build/coverage/merged.profdata' \
"$(find ./build -type f -name '*_tests' -executable -exec printf -- '-o %s ' {} \;)" \
"$(find ./build -type f -name '*\.a' -exec printf -- '-o %s ' {} \;)" \
"$(find ./build -type f -name '*_tests' -executable -exec printf -- '--object=%s ' {} \;)" \
"$(find ./build -type f -name '*\.a' -exec printf -- '--object=%s ' {} \;)" \
-ignore-filename-regex='\.test\.cpp$' \
-ignore-filename-regex='\.fuzz\.cpp$'
)