-
Notifications
You must be signed in to change notification settings - Fork 5
95 lines (72 loc) · 2.41 KB
/
Copy pathci.yml
File metadata and controls
95 lines (72 loc) · 2.41 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
91
92
93
94
95
name: CI
on:
# We run CI on pushes to the main branch
push:
branches:
- main
# and on all pull requests to the main branch
pull_request:
branches:
- main
# as well as upon manual triggers through the 'Actions' tab of the Github UI
workflow_dispatch:
jobs:
build-and-test:
name: Testing on ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- name: Install Doxygen
uses: ssciwr/doxygen-install@v2
- name: Make build directory
run: cmake -E make_directory ${{ github.workspace }}/build
- name: Configure cmake
shell: bash
working-directory: ${{ github.workspace }}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -Dyour-project_BUILD_TESTING=ON -Dyour-project_BUILD_DOCS=OFF -Dyour-project_BUILD_PYTHON=OFF
- name: Build
shell: bash
working-directory: ${{ github.workspace }}/build
run: cmake --build .
- name: Run tests
shell: bash
working-directory: ${{ github.workspace }}/build
run: ctest
coverage-test:
name: Coverage Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install LCov
run: |
sudo apt-get install -y lcov
- name: Install Doxygen
uses: ssciwr/doxygen-install@v2
- name: Create cmake build directory
run: cmake -E make_directory ${{ github.workspace }}/build
- name: Configure cmake
shell: bash
working-directory: ${{ github.workspace }}/build
run: |
cmake $GITHUB_WORKSPACE -DCMAKE_CXX_FLAGS="--coverage -O0 -g" -Dyour-project_BUILD_TESTING=ON -DCMAKE_EXE_LINKER_FLAGS="--coverage" -Dyour-project_BUILD_DOCS=OFF
- name: Build
shell: bash
working-directory: ${{ github.workspace }}/build
run: cmake --build .
- name: Run tests
shell: bash
working-directory: ${{ github.workspace }}/build
run: ctest
- name: Collect coverage report
shell: bash
working-directory: ${{ github.workspace }}
run: |
lcov --directory ./build/src --capture --output-file coverage.info --ignore-errors mismatch,unused --exclude '*/catch2/*'
- name: Upload C++ coverage to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
files: ${{github.workspace}}/coverage.info