-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (95 loc) · 2.94 KB
/
cpp-unittest.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
name: "C++ Unittests"
on:
# always run on main branch
push:
branches: [ main ]
paths-ignore:
- 'README.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
# run on PR to main branch if relevant files changed
pull_request:
branches: [ main ]
paths:
- 'src/**'
- 'include/**'
- 'test/**'
- 'CMakeLists.txt'
- '.github/workflows/cpp-unittest.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
unittest:
name: "unittests"
runs-on: ubuntu-latest
strategy:
matrix:
cpp17_compatibility: [ "ON", "OFF" ]
steps:
- uses: actions/checkout@v3
- uses: jirutka/setup-alpine@v1
with:
branch: edge
extra-repositories: |
http://dl-cdn.alpinelinux.org/alpine/edge/testing
- name: Install dependencies
run: |
apk update
apk add \
cmake \
ninja-build \
g++ \
boost-dev \
boost-filesystem \
boost-python3 \
lua5.2-dev \
python3-dev \
fmt-dev \
gtest-dev \
lcov gzip
shell: alpine.sh --root {0}
- name: Fixup environment
run: |
ln -s liblua-5.2.so.0 /usr/lib/liblua-5.2.so
ln -s /usr/lib/ninja-build/bin/ninja /usr/bin/ninja
shell: alpine.sh --root {0}
- name: Prepare
run: |
cmake . -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Debug \
-DPPPLUGIN_ENABLE_TESTS=ON \
-DPPPLUGIN_ENABLE_COVERAGE=ON \
-DPPPLUGIN_ENABLE_CPP17_COMPATIBILITY=${{ matrix.cpp17_compatibility }}
shell: alpine.sh {0}
- name: Build
run: |
cmake --build build -j
shell: alpine.sh {0}
- name: Execute tests
run: |
lcov --capture --initial \
--directory . \
--ignore-errors mismatch \
--output-file baseline_coverage
build/test/tests || echo $?
lcov --capture \
--directory . \
--ignore-errors mismatch \
--output-file total_coverage
lcov \
--add-tracefile baseline_coverage \
--add-tracefile total_coverage \
--ignore-errors mismatch \
--output-file measured_coverage
lcov --remove measured_coverage "/usr*" \
--ignore-errors mismatch \
--output-file coverage_without_system_files
lcov --remove coverage_without_system_files "*/test/*" \
--ignore-errors mismatch \
--output-file coverage_without_system_and_test_files
genhtml \
--output-directory coverage \
--legend coverage_without_system_and_test_files
lcov --list coverage_without_system_and_test_files
shell: alpine.sh {0}