We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70eaa0e commit 6e053c4Copy full SHA for 6e053c4
.github/workflows/cmake.yml
@@ -396,13 +396,13 @@ jobs:
396
ctest_files=$(echo $ctest_files | sed 's/ $//' | sed "s/ / -object /g")
397
398
llvm-profdata merge -sparse cov/profile-*.profraw -o coverage.profdata
399
- llvm-cov show $ctest_files -instr-profile=coverage.profdata > coverage.txt
+ llvm-cov export $ctest_files -format=lcov -instr-profile=coverage.profdata --skip-branches > coverage.lcov
400
401
- name: Upload Coverage Report
402
uses: codecov/codecov-action@v4
403
with:
404
token: ${{ secrets.CODECOV_TOKEN }}
405
- files: ./build/coverage.txt
+ files: ./build/coverage.lcov
406
flags: unittests
407
name: llvm-cov-coverage
408
fail_ci_if_error: true
0 commit comments