forked from libsemigroups/libsemigroups
-
Notifications
You must be signed in to change notification settings - Fork 0
331 lines (326 loc) · 12.7 KB
/
runtests.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
name: CI
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cygwin:
defaults:
run:
shell: C:\cygwin64\bin\bash.exe --login -o igncr '{0}'
timeout-minutes: 60
runs-on: windows-latest
env:
CHERE_INVOKING: 1
steps:
- uses: gap-actions/setup-cygwin@v1
- uses: actions/checkout@v3
- name: "Configure . . ."
run: ./autogen.sh && ./configure
- name: "Build libsemigroups . . ."
run: make -j4
- name: "Build test_all . . ."
run: make check -j4
- name: "Run the quick tests . . ."
run: ./test_all "[quick]"
benchmark:
timeout-minutes: 10
runs-on: ubuntu-latest
env:
CXX: "ccache g++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v3
- name: "Restore cache . . ."
uses: actions/cache@v3
with:
path: /home/runner/.ccache
key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}:${{ github.sha }}
restore-keys: |
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules
- name: "Install dependencies . . ."
run: |
sudo apt-get --yes update
sudo apt-get install -y ccache
- name: "Configure . . ."
run: |
mkdir -p m4 && ./autogen.sh && ./configure
- name: "Build libsemigroups . . ."
run: |
ccache -z && make -j4 && ccache -s
- name: "Build bench_all . . ."
run: |
make bench_all -j4
clang:
timeout-minutes: 20
runs-on: ubuntu-latest
env:
CXX: "ccache clang++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v3
- name: "Restore cache . . ."
uses: actions/cache@v3
with:
path: /home/runner/.ccache
key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}:${{ github.sha }}
restore-keys: |
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules
- name: "Install dependencies . . ."
run: |
sudo apt-get --yes update
sudo apt-get install -y ccache
- name: "Configure . . ."
run: |
mkdir -p m4 && ./autogen.sh && ./configure
- name: "Build libsemigroups . . ."
run: |
ccache -z && make -j4 && ccache -s
- name: "Build test_all . . ."
run: |
ccache -z && make test_all -j4 && ccache -s
- name: "Run the quick and standard tests . . ."
run: |
./test_all "[quick],[standard]"
config-options:
timeout-minutes: 45
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Install other dependencies . . ."
run: |
sudo apt-get --yes update
sudo apt-get install -y ccache
- name: "Run ./autogen.sh . . ."
run: |
./autogen.sh
- name: "Test flag: --enable-debug"
run: |
./configure --enable-debug
make test_all -j4 || exit 1
./test_all "[quick]"
- name: "Test flag: --disable-hpcombi"
run: |
./configure --disable-hpcombi
make test_all -j4 || exit 1
./test_all "[quick]"
- name: "Test flag: --disable-popcnt --disable-clzll"
run: |
./configure --disable-popcnt --disable-clzll
make test_bitset -j4|| exit 1
./test_bitset "[quick]"
- name: "Test flag: --enable-verbose"
run: |
./configure --enable-verbose
make test_all -j4 || exit 1
./test_all "[quick]"
config-external-deps:
timeout-minutes: 45
runs-on: ubuntu-latest
env:
PKG_CONFIG_PATH: "/home/runner/micromamba-root/envs/libsemigroups/lib/pkgconfig:/home/runner/micromamba-root/envs/libsemigroups/share/pkgconfig/"
LD_LIBRARY_PATH: "/home/runner/micromamba-root/envs/libsemigroups/lib"
steps:
- uses: actions/checkout@v3
- name: "Install conda environment from environment.yml . . ."
uses: mamba-org/provision-with-micromamba@main
- name: "Run ./autogen.sh . . ."
run: |
./autogen.sh
- name: "Test flag: --with-external-fmt --enable-fmt"
run: |
./configure --with-external-fmt --enable-fmt
make test_all -j4 || exit 1
./test_all "[quick]"
- name: "Test flag: --enable-fmt"
run: |
make clean
./configure --enable-fmt
make test_all -j4 || exit 1
./test_all "[quick]"
- name: "Test flag: --with-external-eigen"
run: |
make clean
./configure --with-external-eigen
make test_obvinf -j4 || exit 1
make test_digraph -j4 || exit 1
./test_obvinf "[quick]"
./test_digraph "[quick]"
- name: "Test flag: --disable-eigen"
run: |
make clean
./configure --disable-eigen
make test_obvinf -j4 || exit 1
make test_digraph -j4 || exit 1
./test_obvinf "[quick]"
./test_digraph "[quick]"
coverage:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: "Restore cache . . ."
uses: actions/cache@v3
with:
path: /home/runner/.ccache
key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}:${{ github.sha }}
restore-keys: |
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules
- uses: actions/checkout@v3
- name: "Install dependencies . . ."
run: |
sudo apt-get --yes update
sudo apt-get install -y lcov ccache
- name: "Run quick tests . . ."
run: |
sudo ln -sf /usr/bin/gcov-9 /usr/bin/gcov
export GCOV=/usr/bin/gcov-9
etc/test-code-coverage.sh test_all "[quick]"
bash <(curl -s https://codecov.io/bash)
rm -f coverage.info
distcheck:
timeout-minutes: 15
runs-on: ubuntu-latest
env:
CXX: "ccache g++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v3
- name: "Restore cache . . ."
uses: actions/cache@v3
with:
path: /home/runner/.ccache
key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}:${{ github.sha }}
restore-keys: |
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules
- name: "Install dependencies . . ."
run: |
sudo apt-get --yes update
sudo apt-get install -y ccache
- name: "Configure . . ."
run: |
mkdir -p m4 && ./autogen.sh && ./configure
- name: "make discheck . . ."
run: |
make distcheck -j4
doc:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Install dependencies . . ."
run: |
sudo apt-get --yes update
sudo apt-get install expect
sudo apt-get install graphviz
sudo apt-get install python3-pip
sudo -H pip3 install --upgrade pip
sudo -H pip3 install setuptools
sudo -H pip3 install -r docs/requirements.txt
sudo -H pip3 install --upgrade --ignore-installed pyyaml
- name: "Set up Homebrew . . ."
uses: Homebrew/actions/setup-homebrew@master
- name: "Install latest doxygen . . ."
run: |
brew install gcc
brew install doxygen
- name: "Configure . . ."
run: |
mkdir -p m4 && ./autogen.sh && ./configure
- name: "Build documentation . . ."
run: |
echo "Doxygen version: "
doxygen --version
echo "Sphinx version: "
sphinx-build --version
etc/make-doc-yml.sh | tee make-doc-yml.log
etc/make-doc-sphinx.sh | tee make-doc-sphinx.log
echo
( ! (grep "WARNING:" make-doc-sphinx.log | grep -v "WARNING: bibtex citations changed, rerun sphinx" | grep -v "WARNING: Could not lex literal_block") )
macosx:
timeout-minutes: 60
runs-on: macOS-latest
env:
CXX: "ccache clang++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v3
- name: "Restore cache . . ."
uses: actions/cache@v3
with:
path: /home/runner/.ccache
key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}:${{ github.sha }}
restore-keys: |
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules
- name: "Install dependencies . . ."
run: |
brew install ccache autoconf automake
- name: "Clang version . . ."
run: |
clang++ --version
- name: "Configure . . ."
run: |
mkdir -p m4 && ./autogen.sh && ./configure --disable-hpcombi
- name: "Build libsemigroups . . ."
run: |
ccache -z && make -j4 && ccache -s
- name: "Build test_all . . ."
run: |
ccache -z && make test_all -j4 && ccache -s
- name: "Run the quick tests . . ."
run: |
./test_all "[quick]"
valgrind:
timeout-minutes: 60
runs-on: ubuntu-latest
env:
CXX: "ccache g++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v3
- name: "Restore cache . . ."
uses: actions/cache@v3
with:
path: /home/runner/.ccache
key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}:${{ github.sha }}
restore-keys: |
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}
ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules
- name: "Install dependencies . . ."
run: |
sudo apt-get --yes update
sudo apt-get install -y ccache expect libc6-dbg libtool-bin valgrind
- name: "Configure . . ."
run: |
mkdir -p m4 && ./autogen.sh
./configure --enable-debug --disable-hpcombi
- name: "Build libsemigroups . . ."
run: |
ccache -z && make -j4 && ccache -s
- name: "Build test_all . . ."
run: |
ccache -z && make test_all -j4 && ccache -s
- name: "Run tests with valgrind . . ."
run: |
valgrind --version
unbuffer libtool --mode=execute valgrind --leak-check=full ./test_all "[quick][exclude:no-valgrind]" 2>&1 | tee valgrind.log
echo
( ! grep -i "Invalid" valgrind.log )
( ! grep -E "lost: [^0]" valgrind.log )
test-x86-32:
timeout-minutes: 30
runs-on: ubuntu-latest
env:
GH_ACTIONS_ABI: "32"
GH_ACTIONS_ARCH: "x86"
GH_ACTIONS_TEST_PROG: "test_all"
GH_ACTIONS_TEST_TAGS: "[quick]"
steps:
- uses: actions/checkout@v3
- name: "Running the quick tests in libsemigroups-docker-x86-32-base docker container . . ."
run: |
ci/launch-docker-container.sh