-
Notifications
You must be signed in to change notification settings - Fork 471
188 lines (149 loc) · 4.69 KB
/
test-linux.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
186
187
188
name: test-linux
on:
push:
branches: [master, stable-*]
pull_request:
branches: [master, stable-*]
jobs:
cmake:
name: CMake correctness checks
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Configure build
run: cmake -DAUDIT_SOURCE_FILE_LIST=ON .
gcc-tests:
name: Test Compile gcc ${{ matrix.build_type }}
runs-on: ubuntu-latest
env:
CC: gcc
strategy:
matrix:
build_type: ["Debug", "Release"]
steps:
- uses: actions/[email protected]
- name: Install Doxygen
run: |
sudo apt update
sudo apt-get install doxygen graphviz clang-format-11
- name: Configure build
run: cmake -Bbuild -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DWARNINGS_AS_ERRORS=ON .
- name: Formatting check
working-directory: build
run: |
clang-format-11 --version
make format
git diff --exit-code
- name: Build
working-directory: build
run: make
- name: binding-functions
working-directory: build
run: |
make binding-functions
test -s binding-functions
- name: Tests
working-directory: build
run: |
make test
sudo make install
# Note the packages aren't used to test the examples below
- name: Test packaging
working-directory: build
run: cpack -D CPACK_PACKAGE_CONTACT="Test build in CI"
- name: Examples
run: |
mkdir build/examples
cd build/examples
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ../../examples
make
make test
clang-tests:
name: Test Compile clang ${{ matrix.build_type }} ${{ matrix.compile_opt }}
runs-on: ubuntu-latest
env:
CC: clang
strategy:
matrix:
# See Clang docs for more information on the sanitizers:
# https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html
compile_opt: ["", "-fsanitize=undefined,float-divide-by-zero -fno-sanitize-recover=undefined,float-divide-by-zero", "-fsanitize=memory -fno-sanitize-recover=memory", "-fsanitize=address -fno-sanitize-recover=address"]
build_type: ["Debug", "Release"]
steps:
- uses: actions/[email protected]
- name: Install Doxygen
run: |
sudo apt update
sudo apt-get install doxygen graphviz clang-format-11
- name: Configure build
run: cmake -Bbuild -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DWARNINGS_AS_ERRORS=ON -DCMAKE_C_FLAGS="${{ matrix.compile_opt }}" .
- name: Formatting check
working-directory: build
run: |
clang-format-11 --version
make format
git diff --exit-code
- name: Build
working-directory: build
run: make
- name: binding-functions
working-directory: build
run: |
make binding-functions
test -s binding-functions
- name: Tests
working-directory: build
run: |
make test
sudo make install
# Note the packages aren't used to test the examples below
- name: Test packaging
working-directory: build
run: cpack -D CPACK_PACKAGE_CONTACT="Test build in CI"
- name: Examples
run: |
mkdir build/examples
cd build/examples
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_C_FLAGS="${{ matrix.compile_opt }}" ../../examples
make
make test
valgrind-tests:
name: Test Valgrind
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install Valgrind
run: |
sudo apt update
sudo apt-get install valgrind
- name: Configure build
run: cmake -Bbuild -DCMAKE_BUILD_TYPE=Debug -DWRAP_VALGRIND=ON .
- name: Build
working-directory: build
run: make
- name: Tests
working-directory: build
env:
CTEST_OUTPUT_ON_FAILURE: 1
run: make test-fast
coverage-tests:
name: Coverage
runs-on: ubuntu-latest
env:
CC: gcc
steps:
- uses: actions/[email protected]
- name: Install lcov
run: |
sudo apt update
sudo apt-get install lcov
- name: Configure build
run: cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_COVERAGE=ON -DWARNINGS_AS_ERRORS=ON -DH3_PREFIX=testprefix_ .
- name: Build
run: make
- name: Tests
run: make coverage
- uses: coverallsapp/github-action@master
with:
path-to-lcov: ./coverage.cleaned.info
github-token: ${{ secrets.GITHUB_TOKEN }}