ChaosCi: Report coverage via lcov + genhtml
Some checks failed
Chaos Ci / test-and-benchmark (push) Failing after 2m31s

This commit is contained in:
hashlag
2026-01-28 02:05:36 +03:00
parent 2a5a2c96b5
commit 07663decf9

View File

@@ -15,7 +15,7 @@ jobs:
- name: Install
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake valgrind
sudo apt-get install -y build-essential cmake valgrind lcov
- name: Configure and build [Debug]
run: |
@@ -33,4 +33,15 @@ jobs:
run: valgrind --leak-check=full --track-origins=yes --show-leak-kinds=all ./build-debug/ChaosTests/ChaosTests
- name: Run benchmarks
run: ./build-release/ChaosBenches/ChaosBenches
run: ./build-release/ChaosBenches/ChaosBenches
- name: Process coverage data
run: |
lcov --ignore-errors inconsistent -c -d build-debug/ -o lcovout
genhtml lcovout -o coverage-report
- uses: actions/upload-artifact@v4
with:
name: CoverageReport
path: coverage-report/
if-no-files-found: error