-
Notifications
You must be signed in to change notification settings - Fork 5
382 lines (310 loc) · 11.7 KB
/
cmaboss-ubuntu.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
name: cMaBoSS Linux
on:
push:
pull_request:
release:
types: [created]
jobs:
cmaboss:
name: cMaBoSS
runs-on: ubuntu-22.04
env:
GCC: gcc
CXX: g++
INSTALL_PATH: /usr/
BUILD_PATH: /tmp/
LIBXML_LIBDIR: /usr/lib/x86_64-linux-gnu/libxml2.so
LIBXML_INCLUDEDIR: /usr/include/libxml2
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -yq python3-pip python3-setuptools
sudo pip3 install numpy pandas
- name: Cache compiled libSBML
id: cache-libsbml-gcc
uses: actions/cache@v4
with:
path: /tmp/libsbml-5.20.2
key: ${{ runner.os }}-libSBML-5.20.2-gcc-namespace
- name: Compiling libSBML
if: steps.cache-libsbml-gcc.outputs.cache-hit != 'true'
run: bash scripts/build_libsbml.sh
- name: Install libSBML
run: sudo bash scripts/install_libsbml.sh
- name: Build cMaBoSS
run: |
cd engine/src
make
cd ../python
cp -r ../src cmaboss
pip3 install .
cd ../..
- name: Test cMaBoSS
run: bash scripts/run_cmaboss_tests.sh
build_wheels_linux:
name: Build linux wheels
runs-on: ubuntu-22.04
strategy:
matrix:
build: ["cp*-manylinux_x86_64", "pp*-manylinux_x86_64"]
needs: cmaboss
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel numpy twine
- name: Build wheels
env:
CIBW_BUILD: ${{ matrix.build }}
CIBW_BEFORE_ALL: >
yum install wget libxml2-devel -y &&
GCC=gcc CXX=g++ INSTALL_PATH=/usr/ BUILD_PATH=/tmp/ \
LIBXML_LIBDIR=/usr/lib64/libxml2.so \
LIBXML_INCLUDEDIR=/usr/include/libxml2 bash scripts/build_libsbml.sh &&
BUILD_PATH=/tmp/ bash scripts/install_libsbml.sh
run: |
cd engine/src
make grammars
cd ../../
cp -r engine/src engine/python/cmaboss/
python -m cibuildwheel --output-dir wheelhouse engine/python
- uses: actions/upload-artifact@v4
if: matrix.build == 'cp*-manylinux_x86_64'
with:
name: wheels-cpython
path: wheelhouse/*.whl
- uses: actions/upload-artifact@v4
if: matrix.build == 'pp*-manylinux_x86_64'
with:
name: wheels-pypy
path: wheelhouse/*.whl
- name: Upload cMaBoSS to test Pypi
if: github.repository == 'vincent-noel/MaBoSS' && github.ref == 'refs/heads/master'
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_TOKEN }}
run: |
python -m twine upload --repository testpypi --skip-existing wheelhouse/cmaboss*
- name: Upload cMaBoSS to Pypi
if: github.repository == 'sysbio-curie/MaBoSS' && github.event_name == 'release'
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m twine upload --skip-existing wheelhouse/cmaboss*
cmaboss_conda_defaults:
name: Build cMaBoSS Anaconda package
runs-on: ubuntu-22.04
needs: cmaboss
strategy:
matrix:
version: [{python: "3.8", numpy: "1.22"}, {python: "3.9", numpy: "1.22"}, {python: "3.10", numpy: "1.22"}, {python: "3.11", numpy: "1.23"}, {python: "3.12", numpy: "1.26"}]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: defaults
python-version: 3.12
miniforge-variant: Mambaforge
use-mamba: true
- name: Install conda-build
run: |
conda install conda-build anaconda-client conda-verify
- name: Build cMaBoSS Anaconda package
run: |
conda build -c colomoto --variants "{\"python\": [\"${{ matrix.version.python }}\"], \"numpy\": [\"${{ matrix.version.numpy }}\"]}" conda/cmaboss;
- name: Caching produced conda package
uses: actions/cache@v4
with:
path: |
/home/runner/miniconda3/envs/test/conda-bld/*
key: ${{ runner.os }}-cmaboss-conda-defaults-${{ github.run_id }}-${{ matrix.version.python }}
cmaboss_conda:
name: Build cMaBoSS Anaconda package (conda-forge)
runs-on: ubuntu-22.04
needs: cmaboss
strategy:
matrix:
version: [{python: "3.8", numpy: "1.22"}, {python: "3.9", numpy: "1.22"}, {python: "3.10", numpy: "1.22"}, {python: "3.11", numpy: "1.23"}, {python: "3.12", numpy: "1.26"}]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: conda-forge
python-version: 3.12
miniforge-variant: Mambaforge
use-mamba: true
- name: Install conda-build
run: |
conda install conda-build anaconda-client conda-verify
- name: Build cMaBoSS Anaconda package
run: |
CUSTOM_BUILD_NUMBER=1 conda build -c conda-forge -c colomoto --variants "{\"python\": [\"${{ matrix.version.python }}\"], \"numpy\": [\"${{ matrix.version.numpy }}\"]}" conda/cmaboss;
- name: Caching produced conda package
uses: actions/cache@v4
with:
path: |
/home/runner/miniconda3/envs/test/conda-bld/*
key: ${{ runner.os }}-cmaboss-conda-${{ github.run_id }}-${{ matrix.version.python }}
cmaboss_conda_defaults_test:
name: Test cMaBoSS Anaconda package
runs-on: ubuntu-22.04
needs: cmaboss_conda_defaults
strategy:
matrix:
version: [{python: "3.8", numpy: "1.22"}, {python: "3.9", numpy: "1.22"}, {python: "3.10", numpy: "1.22"}, {python: "3.11", numpy: "1.23"}, {python: "3.12", numpy: "1.26"}]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: defaults
python-version: ${{ matrix.version.python }}
miniforge-variant: Mambaforge
use-mamba: true
- name: Caching produced conda package
uses: actions/cache@v4
with:
path: |
/home/runner/miniconda3/envs/test/conda-bld/*
key: ${{ runner.os }}-cmaboss-conda-defaults-${{ github.run_id }}-${{ matrix.version.python }}
- name: Install conda-build
run: |
conda install conda-build conda-index
- name: Install package
run: |
python -m conda_index /home/runner/miniconda3/envs/test/conda-bld/
conda install -c file:///home/runner/miniconda3/envs/test/conda-bld/ -c colomoto cmaboss
- name: Install test dependencies
run: |
pip install pandas
- name: Test package
run: |
cd engine/tests
python -m unittest test
python -m unittest test_128n
cmaboss_conda_test:
name: Test cMaBoSS Anaconda package (conda-forge)
runs-on: ubuntu-22.04
needs: cmaboss_conda
strategy:
matrix:
version: [{python: "3.8", numpy: "1.22"}, {python: "3.9", numpy: "1.22"}, {python: "3.10", numpy: "1.22"}, {python: "3.11", numpy: "1.23"}, {python: "3.12", numpy: "1.26"}]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: conda-forge
python-version: ${{ matrix.version.python }}
miniforge-variant: Mambaforge
use-mamba: true
- name: Caching produced conda package
uses: actions/cache@v4
with:
path: |
/home/runner/miniconda3/envs/test/conda-bld/*
key: ${{ runner.os }}-cmaboss-conda-${{ github.run_id }}-${{ matrix.version.python }}
- name: Install conda-build
run: |
conda install conda-build conda-index
- name: Install package
run: |
python -m conda_index /home/runner/miniconda3/envs/test/conda-bld/
conda install -c file:///home/runner/miniconda3/envs/test/conda-bld/ -c colomoto cmaboss
- name: Install test dependencies
run: |
pip install pandas
- name: Test package
run: |
cd engine/tests
python -m unittest test
python -m unittest test_128n
cmaboss_conda_publish_defaults:
name: Publish cMaBoSS Anaconda package
runs-on: ubuntu-22.04
needs: cmaboss_conda_defaults_test
strategy:
matrix:
version: [{python: "3.8", numpy: "1.22"}, {python: "3.9", numpy: "1.22"}, {python: "3.10", numpy: "1.22"}, {python: "3.11", numpy: "1.23"}, {python: "3.12", numpy: "1.26"}]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: defaults
python-version: 3.12
miniforge-variant: Mambaforge
use-mamba: true
- name: Caching produced conda package
uses: actions/cache@v4
with:
path: |
/home/runner/miniconda3/envs/test/conda-bld/*
key: ${{ runner.os }}-cmaboss-conda-defaults-${{ github.run_id }}-${{ matrix.version.python }}
- name: Install anaconda-client
run: |
conda install anaconda-client
- name: Upload cMaBoSS Ananconda package on vincent-noel
run: |
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload -u vincent-noel /home/runner/miniconda3/envs/test/conda-bld/linux-64/*.tar.bz2 --force;
- name: Upload cMaBoSS Ananconda package on colomoto
if: github.repository == 'sysbio-curie/MaBoSS' && github.event_name == 'release'
run: |
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload -u colomoto /home/runner/miniconda3/envs/test/conda-bld/linux-64/*.tar.bz2 --force;
cmaboss_conda_publish:
name: Publish cMaBoSS Anaconda package (conda-forge)
runs-on: ubuntu-22.04
needs: cmaboss_conda_test
strategy:
matrix:
version: [{python: "3.8", numpy: "1.22"}, {python: "3.9", numpy: "1.22"}, {python: "3.10", numpy: "1.22"}, {python: "3.11", numpy: "1.23"}, {python: "3.12", numpy: "1.26"}]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: conda-forge
python-version: 3.12
miniforge-variant: Mambaforge
use-mamba: true
- name: Caching produced conda package
uses: actions/cache@v4
with:
path: |
/home/runner/miniconda3/envs/test/conda-bld/*
key: ${{ runner.os }}-cmaboss-conda-${{ github.run_id }}-${{ matrix.version.python }}
- name: Install anaconda-client
run: |
conda install anaconda-client
- name: Upload cMaBoSS Ananconda package on vincent-noel
run: |
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload -u vincent-noel /home/runner/miniconda3/envs/test/conda-bld/linux-64/*.tar.bz2 --force;
- name: Upload cMaBoSS Ananconda package on colomoto
if: github.repository == 'sysbio-curie/MaBoSS' && github.event_name == 'release'
run: |
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload -u colomoto /home/runner/miniconda3/envs/test/conda-bld/linux-64/*.tar.bz2 --force;