forked from libsemigroups/libsemigroups
-
Notifications
You must be signed in to change notification settings - Fork 1
253 lines (249 loc) · 10.1 KB
/
runtests.yml
File metadata and controls
253 lines (249 loc) · 10.1 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
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
name: CI
on: [pull_request]
jobs:
benchmark:
timeout-minutes: 10
runs-on: ubuntu-latest
env:
CXX: "ccache g++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v2
- name: "Restore cache . . ."
uses: actions/cache@v2
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: 15
runs-on: ubuntu-latest
env:
CXX: "ccache clang++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v2
- name: "Restore cache . . ."
uses: actions/cache@v2
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: 30
runs-on: ubuntu-latest
env:
PKG_CONFIG_PATH: "/usr/share/miniconda/lib/pkgconfig:/usr/share/miniconda/share/pkgconfig"
LD_LIBRARY_PATH: "/usr/share/miniconda/lib"
steps:
- uses: actions/checkout@v2
- 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]"
coverage:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: "Restore cache . . ."
uses: actions/cache@v2
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@v2
- 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: 10
runs-on: ubuntu-latest
env:
CXX: "ccache g++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v2
- name: "Restore cache . . ."
uses: actions/cache@v2
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@v2
- 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: "Install latest doxygen . . ."
run: |
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
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: 15
runs-on: macOS-latest
env:
CXX: "ccache clang++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v2
- name: "Restore cache . . ."
uses: actions/cache@v2
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: "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: 20
runs-on: ubuntu-latest
env:
CXX: "ccache g++"
CXXFLAGS: "-fdiagnostics-color"
steps:
- uses: actions/checkout@v2
- name: "Restore cache . . ."
uses: actions/cache@v2
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 )