-
Notifications
You must be signed in to change notification settings - Fork 3
90 lines (75 loc) · 2.28 KB
/
CodeCoverage.yml
File metadata and controls
90 lines (75 loc) · 2.28 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: CodeCoverage
on:
push:
paths:
# Workflow file itself
- '.github/workflows/CodeCoverage.yml'
# C++ files
- '**.cpp'
- '**.hpp'
# CMake files
- '**.cmake'
- '**.txt'
# Script files
- '**.sh'
pull_request:
branches:
- main
- develop
paths:
# Workflow file itself
- '.github/workflows/CodeCoverage.yml'
# C++ files
- '**.cpp'
- '**.hpp'
# CMake files
- '**.cmake'
- '**.txt'
# Script files
- '**.sh'
release:
types: [published]
workflow_dispatch:
jobs:
linux:
runs-on: 'ubuntu-24.04'
# Don't run on dependabot PRs
if: github.actor != 'dependabot[bot]'
strategy:
fail-fast: false
matrix:
compiler:
- "gcc-14"
build_type:
- "Debug"
- "Release"
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Environment
run: scripts/ci/SetupEnvironment.sh
- name: Install compiler
run: scripts/ci/InstallTools.sh ${{ matrix.compiler }} ninja gcovr
- name: Configure build directory
run: |
mkdir build -p
cd build
cmake -DCMAKE_BUILD_TYPE:STRING=${{ matrix.build_type }} -DPHI_COVERAGE_BUILD:BOOL=ON -DPHI_TEST_COMPILE_FAILURES:BOOL=OFF ..
- name: Build
working-directory: ./build
run: cmake --build . --config ${{ matrix.build_type }}
- name: Run tests
working-directory: ./build
run: ctest . -C ${{ matrix.build_type }}
- name: Process coverage data
working-directory: ./build
run: gcovr -j ${PROC_COUNT} --delete --root ../ --print-summary --exclude-unreachable-branches --exclude-function-lines --xml-pretty --xml coverage.xml . --gcov-executable "${GCOV_EXECUTABLE}" --exclude-lines-by-pattern "^\s*{$" --exclude-lines-by-pattern "^\s*}$"
- name: Upload coverage data
uses: codecov/codecov-action@v5
with:
files: ./build/coverage.xml
flags: ${{ runner.os }},${{ matrix.compiler }},${{ matrix.build_type }}
name: ${{ runner.os }}-${{ matrix.compiler }}-${{ matrix.build_type }}
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
plugins: noop