-
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.08 KB
/
coverage.yml
File metadata and controls
51 lines (42 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Coverage
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main" ]
jobs:
coverage:
name: Code Coverage (GCC 14)
runs-on: ubuntu-latest
container: gcc:14
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
apt update
apt install -y cmake lcov
- name: Configure CMake
run: |
cmake -B build \
-DCMAKE_BUILD_TYPE=Debug \
-DDYNEMIT_COVERAGE=ON
- name: Build
run: cmake --build build -j$(nproc)
- name: Generate coverage report
run: cmake --build build --target coverage
- name: Upload to Codecov
uses: codecov/codecov-action@v4
with:
files: build/coverage.info
flags: unittests
fail_ci_if_error: false
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload HTML coverage report
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: build/coverage_report/
retention-days: 30