-
-
Notifications
You must be signed in to change notification settings - Fork 7
68 lines (54 loc) · 1.54 KB
/
wheels_pyodide.yml
File metadata and controls
68 lines (54 loc) · 1.54 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
name: Build python-libsbml Wheel (pyodide)
on:
workflow_dispatch:
jobs:
make_sdist:
name: Make SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Optional, use if you use setuptools_scm
- name: checkout needed submodules
shell: bash
run: |
./.github/workflows/checkout-submodules.sh
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz
name: libSBML-sdist
build_wheels:
name: Wheel on ${{ matrix.os }}
runs-on: ubuntu-latest
needs: make_sdist
steps:
- uses: actions/download-artifact@v4
with:
name: libSBML-sdist
- name: Extract sdist into the current directory
shell: bash
run: |
tar zxf *.tar.gz --strip-components=1
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==3.4.0 swig==4.4.1 cmake==3.31.6
# print versions
python --version
cmake --version
swig -version
- name: Build Wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_PLATFORM: pyodide
CIBW_BEFORE_BUILD_LINUX: "pip install swig==4.4.1"
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
path: wheelhouse/*.whl
name: libSBML-pyodide