-
Notifications
You must be signed in to change notification settings - Fork 34
395 lines (354 loc) · 11.4 KB
/
tests.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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
# It's useful to use yamllint to find problems with this file;
# pip install --user yamllint, python3 -m yamllint <file>
#
# It is quite aggressive by default, though, so I've disabled some rules
#
# yamllint disable rule:document-start
# yamllint disable rule:line-length
# yamllint disable rule:brackets
# yamllint disable rule:braces
name: tests
on: [push, pull_request] # yamllint disable-line rule:truthy
jobs:
canceller:
runs-on: ubuntu-20.04
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
CLI:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
# Ubuntu with the oldest supported GCC (used to be 4.8, but with 20.04 it is 7, sadly).
- os: ubuntu-20.04
gcc: 7
python: 3.8
# Ubuntu with the most recent GCC (on 22.04, that is 12).
- os: ubuntu-22.04
gcc: 12
python: 3.9
# macOS, oldest supported version (macos-10.15 was removed by GitHub)
- os: macos-11
python: 3.8
# macOS, newest supported version (macos-13 does not work yet)
- os: macos-12
python: 3.9
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Choose GCC
if: startsWith(matrix.os, 'ubuntu')
run: |
# Install specific GCC version as the default.
sudo apt-get install gcc-${{ matrix.gcc }} g++-${{ matrix.gcc }}
sudo update-alternatives \
--install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.gcc }} 100 \
--slave /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.gcc }}
- name: Cache conda and dependancies
id: cache
uses: actions/cache@v2
with:
path: |
c:\Miniconda\envs\anaconda-client-env
/usr/share/miniconda/envs/anaconda-client-env
~/osx-conda
~/.profile
key: ${{ runner.os }}-${{ matrix.python }}-conda-v13-${{ hashFiles('treerec/tests/conda-requirements.txt') }}-${{ hashFiles('treerec/tests/pip-requirements.txt') }}
- name: Install Conda
uses: conda-incubator/setup-miniconda@v2
if: steps.cache.outputs.cache-hit != 'true'
with:
activate-environment: anaconda-client-env
python-version: ${{ matrix.python }}
channels: conda-forge
channel-priority: strict
auto-update-conda: true
use-only-tar-bz2: true
- name: Install conda deps
if: steps.cache.outputs.cache-hit != 'true'
shell: bash -l {0} # We need a login shell to get conda
run: conda install --yes --file=treerec/tests/conda-requirements.txt
- name: Install pip deps
if: steps.cache.outputs.cache-hit != 'true'
shell: bash -l {0}
run: |
pip3 install -r treerec/tests/pip-requirements.txt
- name: Fix OSX Cache Write # OSX Won't let the cache restore due to file perms
if: steps.cache.outputs.cache-hit != 'true' && startsWith(matrix.os, 'macos')
run: |
cp -r /usr/local/miniconda/envs/anaconda-client-env ~/osx-conda
- name: Fix OSX Cache Restore
if: steps.cache.outputs.cache-hit == 'true' && startsWith(matrix.os, 'macos')
run: |
sudo mkdir -p /usr/local/miniconda/envs
sudo cp -r ~/osx-conda /usr/local/miniconda/envs/anaconda-client-env
- name: Install pyslim
shell: bash -l {0}
run: |
# TODO: uncomment when pyslim 1.0 on conda
source ~/.profile
# conda activate anaconda-client-env
# pip install pyslim
git clone https://github.com/tskit-dev/pyslim.git
cd pyslim
pip3 install .
- name: Build (Debug)
run: |
mkdir Debug
cd Debug
cmake -D CMAKE_BUILD_TYPE=Debug ..
make -j 2
- name: Test (Debug)
run: |
cd Debug
./eidos -testEidos
./slim -testEidos
./slim -testSLiM
- name: Build (Release)
run: |
mkdir Release
cd Release
cmake -D CMAKE_BUILD_TYPE=Release ..
make -j 2
- name: Test (Release)
run: |
cd Release
./eidos -testEidos
./slim -testEidos
./slim -testSLiM
- name: Treesequence tests
run: |
source ~/.profile
conda activate anaconda-client-env
export PATH=$PATH:$PWD/Release
echo $PATH
cd treerec/tests && python -m pytest -xv
GUI:
runs-on: ${{ matrix.os }}
env:
CXXFLAGS: -D NO_QT_VERSION_ERROR
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
# Ubuntu with the oldest supported Qt and GCC.
- os: ubuntu-20.04
qt: 5.9.5
gcc: 7
# Ubuntu with the most recent Qt and GCC.
- os: ubuntu-20.04
qt: 5.15.2
gcc: 11
# Ubuntu with the most recent Qt and GCC.
- os: ubuntu-22.04
qt: 5.15.2
gcc: 12
# old macOS with oldest supported Qt.
- os: macos-11
qt: 5.9.5
# new macOS with most recent Qt (macos-13 does not work yet)
- os: macos-12
qt: 5.15.2
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Choose GCC
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get install gcc-${{ matrix.gcc }} g++-${{ matrix.gcc }}
sudo update-alternatives \
--install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.gcc }} 100 \
--slave /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.gcc }}
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ matrix.qt }}
setup-python: true
- name: Build (cmake)
run: |
# Just do a release build.
mkdir Release
cd Release
cmake -D BUILD_SLIMGUI=ON -D CMAKE_BUILD_TYPE=Release ..
make -j 2
- name: Build (qmake)
run: |
mkdir QtSLiM_QMAKE
cd QtSLiM_QMAKE
qmake ..
make -j 2
# test windows-latest compilation
tests-windows-latest-CLI:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- { sys: mingw64, env: x86_64, python: 3.8 }
- { sys: ucrt64, env: ucrt-x86_64, python: 3.8 }
name: Windows CLI (${{ matrix.sys }}, ${{ matrix.env }})
defaults:
run:
shell: msys2 {0}
steps:
- name: 'Checkout'
uses: actions/checkout@v2
with:
submodules: true
- name: Setup MSYS2 ${{matrix.sys}}
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true
install: >-
git
base-devel
msys2-devel
mingw-w64-${{matrix.env}}-toolchain
mingw-w64-${{matrix.env}}-cmake
- name: Cache conda and dependancies
id: cache
uses: actions/cache@v2
with:
path: |
c:\Miniconda\envs\anaconda-client-env
~/.bash_profile
~/.profile
key: ${{ runner.os }}-${{ matrix.python}}-conda-v16-${{ hashFiles('treerec/tests/conda-requirements.txt') }}-${{ hashFiles('treerec/tests/pip-requirements.txt') }}
- name: Install Conda
uses: conda-incubator/setup-miniconda@v2
if: steps.cache.outputs.cache-hit != 'true'
with:
activate-environment: anaconda-client-env
python-version: ${{ matrix.python }}
channels: conda-forge
channel-priority: strict
auto-update-conda: true
use-only-tar-bz2: true
- name: Install conda deps
if: steps.cache.outputs.cache-hit != 'true'
shell: bash -l {0}
run: |
conda install --yes --file=treerec/tests/conda-requirements.txt
- name: Install pip deps
if: steps.cache.outputs.cache-hit != 'true'
shell: bash -l {0}
run: |
pip install -r treerec/tests/pip-requirements.txt
- name: Install pyslim
shell: bash -l {0}
run: |
# TODO: uncomment when pyslim 1.0 is on conda
# conda install -c conda-forge pyslim
git clone https://github.com/tskit-dev/pyslim.git
cd pyslim
pip3 install .
- name: Debug
run: |
cd windows_compat/gnulib
touch --date="`date`" aclocal.m4 Makefile.am configure configure.ac config.h.in Makefile.in
cd ../..
mkdir Debug
cd Debug
cmake -G"MSYS Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
make -j 2
- name: Build (Release)
run: |
cd windows_compat/gnulib
touch --date="`date`" aclocal.m4 Makefile.am configure configure.ac config.h.in Makefile.in
cd ../..
mkdir Release
cd Release
cmake -G"MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make -j 2
- name: Test (Release)
run: |
cd Release
./eidos -testEidos
./slim -testEidos
./slim -testSLiM
- name: Treesequence tests
shell: bash -l {0}
run: |
export PATH=$PATH:$(pwd)/Release
cd treerec/tests
python -m pytest -xv
tests-windows-latest-GUI:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- { sys: mingw64, env: x86_64 }
- { sys: ucrt64, env: ucrt-x86_64 }
name: Windows GUI (${{ matrix.sys }}, ${{ matrix.env }})
defaults:
run:
shell: msys2 {0}
steps:
- name: 'Checkout'
uses: actions/checkout@v2
with:
submodules: true
- name: Setup MSYS2 ${{matrix.sys}}
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true
install: >-
git
base-devel
msys2-devel
mingw-w64-${{matrix.env}}-toolchain
mingw-w64-${{matrix.env}}-cmake
mingw-w64-${{matrix.env}}-qt5-base
- name: Build (cmake)
run: |
cd .
cd windows_compat/gnulib
touch --date="`date`" aclocal.m4 Makefile.am configure configure.ac config.h.in Makefile.in
cd ../..
# Just do a release build.
mkdir Release
cd Release
cmake -G"MSYS Makefiles" -DBUILD_SLIMGUI=ON -DCMAKE_BUILD_TYPE=Release ..
make -j 2
tests-windows-latest-pacman:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- { sys: mingw64, env: x86_64 }
- { sys: ucrt64, env: ucrt-x86_64 }
name: Windows pacman (${{ matrix.sys }}, ${{ matrix.env }})
defaults:
run:
shell: msys2 {0}
steps:
- name: 'Checkout'
uses: actions/checkout@v2
with:
submodules: true
- name: Setup MSYS2 ${{matrix.sys}}
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true
install: >-
mingw-w64-${{matrix.env}}-slim-simulator
- name: Test
run: |
eidos -testEidos
slim -testEidos
slim -testSLiM