-
Notifications
You must be signed in to change notification settings - Fork 0
94 lines (76 loc) · 2.35 KB
/
CodeCoverage.yml
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
91
92
93
94
name: CodeCoverage
on:
push:
paths:
# Workflow file itself
- '.github/workflows/CodeCoverage.yml'
# C++ files
- '**.cpp'
- '**.hpp'
# CMake files
- '**.cmake'
- '**.txt'
# Script files
- '**.sh'
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- main
- develop
release:
types: [published]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CMAKE_C_COMPILER_LAUNCHER: "ccache"
CMAKE_CXX_COMPILER_LAUNCHER: "ccache"
jobs:
linux:
runs-on: ubuntu-24.04
env:
LLVM_PROFILE_FILE: "profile-%p.profraw"
strategy:
fail-fast: false
matrix:
compiler:
- "gcc-14"
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Environment
run: external/Phi/scripts/ci/SetupEnvironment.sh
- name: Setup ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ runner.os }}-${{ matrix.compiler }}
- name: Install dependencies
run: sudo scripts/ci/InstallDependencies.sh
- name: Install compiler
run: external/Phi/scripts/ci/InstallTools.sh ${{ matrix.compiler }} ninja gcovr
- name: Configure build directory
run: |
mkdir build -p
cd build
cmake -DCMAKE_AR=${AR_EXECUTABLE} -DCMAKE_BUILD_TYPE=Debug -DDLXEMU_COVERAGE_BUILD:BOOL=ON -DCMAKE_CXX_FLAGS="-DDLXEMU_VERIFY_UNDO_REDO -DDLXEMU_VERIFY_COLUMN -DPHI_DEBUG" ..
- name: Build
working-directory: ./build
run: cmake --build . --config Debug
- name: Run tests
working-directory: ./build
run: ctest . -C Debug
- name: Process coverage data
working-directory: ./build
run: gcovr -j ${PROC_COUNT} --delete --root ../ --exclude-unreachable-branches --exclude-function-lines --print-summary --xml-pretty --xml coverage.xml . --gcov-executable "${GCOV_EXECUTABLE}"
- name: Upload coverage data
uses: codecov/codecov-action@v4
with:
file: ./build/coverage.xml
flags: ${{ runner.os }},${{ matrix.compiler }}
name: ${{ runner.os }}-${{ matrix.compiler }}
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}