-
Notifications
You must be signed in to change notification settings - Fork 1
185 lines (156 loc) · 8.24 KB
/
code_coverage.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#
# Copyright 2023 Antony Peacock
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
name: Code Coverage
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug
COMPILER_TYPE: gcc
COMPILER_VERSION: 12
STDLIB: libstdc++11
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ "ubuntu-latest" ]
steps:
- uses: actions/[email protected]
- name: Cache Conan data
uses: actions/[email protected]
env:
cache-name: cache-conan-data
with:
path: ${{github.workspace}}/conan_cache_save.tgz
key: ${{ hashFiles('**/conanfile.py') }}-build-${{ matrix.os }}-${{ env.BUILD_TYPE }}-${{ env.COMPILER_TYPE }}-${{ env.COMPILER_VERSION }}-${{ env.STDLIB }}
restore-keys: |
${{ hashFiles('**/conanfile.py') }}-build-${{ matrix.os }}-${{ env.BUILD_TYPE }}-${{ env.COMPILER_TYPE }}-${{ env.COMPILER_VERSION }}-
${{ hashFiles('**/conanfile.py') }}-build-${{ matrix.os }}-${{ env.BUILD_TYPE }}-${{ env.COMPILER_TYPE }}-
${{ hashFiles('**/conanfile.py') }}-build-${{ matrix.os }}-${{ env.BUILD_TYPE }}-
${{ hashFiles('**/conanfile.py') }}-build-${{ matrix.os }}-
# Previously GCC was installed via egor-tensin/setup-gcc@v1 but this does not install gcov with the compiler.
# By default Ubuntu has Gcov 11 installed. This worked so long as the compiler was gcc 11, but if a later gcc was
# installed then gcov could fail as it must be the same version as the compiler. By installing the compiler
# package we ensure that gcc and gcov are installed at the same time and the versions match. For more details
# see here: https://github.com/Twon/Morpheus/issues/184
- name: Install Latest GCC
shell: bash
run: |
sudo apt install -y g++-${{ env.COMPILER_VERSION }}
# We need to update symlink otherwise we end up with miss matched gcc/g++ and gcov versions.
sudo rm /usr/bin/gcc
sudo rm /usr/bin/g++
sudo rm /usr/bin/gcov
sudo ln -s /usr/bin/gcov-${{ env.COMPILER_VERSION }} /usr/bin/gcov
sudo ln -s /usr/bin/gcc-${{ env.COMPILER_VERSION }} /usr/bin/gcc
sudo ln -s /usr/bin/g++-${{ env.COMPILER_VERSION }} /usr/bin/g++
- name: Install Lcov
shell: bash
# Lcov 2.0 is missing a dependency on DateTime so manually install for now.
run: |
wget https://github.com/linux-test-project/lcov/archive/refs/tags/v2.0.tar.gz
tar -xvf v2.0.tar.gz
cd lcov-2.0
sudo make install
# Lcov 2.0 is missing a number of dependencies (DateTime and Capture::Tiny) so manually install for now.
# When this is addressed in Lcov then this should be removed.
- name: Install Missing Lcov Dependencies
shell: bash
run: |
sudo perl -MCPAN -e 'install Capture::Tiny'
sudo apt-get install libdatetime-perl
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.11'
- name: Install Python requirements
run: |
pip install -r ./requirements.txt
- name: Configure Conan
shell: bash
run: |
conan profile detect --force
sed -i.backup '/^\[settings\]$/,/^\[/ s/^compiler.cppstd=.*/compiler.cppstd=20/' .conan2/profiles/default
sed -i.backup '/^\[settings\]$/,/^\[/ s/^build_type=.*/build_type=${{ env.BUILD_TYPE }}/' .conan2/profiles/default
sed -i.backup '/^\[settings\]$/,/^\[/ s/^compiler=.*/compiler=${{ env.COMPILER_TYPE }}/' .conan2/profiles/default
sed -i.backup '/^\[settings\]$/,/^\[/ s/^compiler.version=.*/compiler.version=${{ env.COMPILER_VERSION }}/' .conan2/profiles/default
sed -i.backup '/^\[settings\]$/,/^\[/ s/^compiler.libcxx=.*/compiler.libcxx=${{ env.STDLIB }}/' .conan2/profiles/default
sed -i.backup '1a mold*:build_type=Release' .conan2/profiles/default
sed -i.backup '1a onetbb*:build_type=Release' .conan2/profiles/default
sed -i.backup '1a mold*:compiler.libcxx=libstdc++11' .conan2/profiles/default
echo "tools.cmake.cmaketoolchain:generator = Ninja" >> .conan2/global.conf
echo "tools.system.package_manager:mode = install" >> .conan2/global.conf
echo "tools.system.package_manager:sudo = True" >> .conan2/global.conf
conan profile show -pr default
- name: Conan Cache Restore
shell: bash
run: |
if [ -f ./conan_cache_save.tgz ]; then
conan cache restore ./conan_cache_save.tgz
fi
- name: Configure Install
working-directory: ${{github.workspace}}
shell: bash
run: |
conan install "${{github.workspace}}" --build missing -o boost/*:without_cobalt=True
- name: Conan Preset
shell: bash
run: echo "CONAN_PRESET=conan-$(echo ${{env.BUILD_TYPE}} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: |
source build/${{env.BUILD_TYPE}}/generators/conanbuild.sh
cmake --preset ${{ env.CONAN_PRESET }} -DENABLE_CODE_COVERAGE=1
- name: Build
# Build your program with the given configuration
run: |
source build/${{env.BUILD_TYPE}}/generators/conanbuild.sh
cmake --build --preset ${{ env.CONAN_PRESET }}
- name: Test
working-directory: ${{github.workspace}}
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --preset ${{ env.CONAN_PRESET }} --rerun-failed --output-on-failure
- name: Fastcov
# Run Fastcov target to collect coverage information.
run: cmake --build --preset ${{ env.CONAN_PRESET }} --target coverage
- name: Lcov
# Run LCov target to generate code coverage report
run: cmake --build --preset ${{ env.CONAN_PRESET }} --target coverage-lcov
- name: Cobertura
# Run Cobertura target to generate code coverage report in XML
run: cmake --build --preset ${{ env.CONAN_PRESET }} --target coverage-cobertura
- name: Upload coverage to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
working-directory: ${{github.workspace}}/build/${{env.BUILD_TYPE}}/coverage
files: ${{github.workspace}}/build/${{env.BUILD_TYPE}}/coverage/cobertura_coverage.xml
- name: Conan Cache Save
run: |
conan cache clean
conan cache save "*/*:*"