Skip to content

Build python-libsbml Wheels #42

Build python-libsbml Wheels

Build python-libsbml Wheels #42

Workflow file for this run

name: Build python-libsbml Wheels
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: sdist
build_wheels:
name: Wheel on ${{ matrix.os }} for ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
needs: make_sdist
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ['cp39-*', 'cp310-*', 'cp311-*', 'cp312-*', 'cp313-*']
steps:
- uses: actions/download-artifact@v4
with:
name: sdist
- name: Extract sdist into the current directory
shell: bash
run: |
tar zxf *.tar.gz --strip-components=1
- name: install swig on macos
if: matrix.os == 'macos-latest'
run: brew install swig
- uses: pypa/[email protected]
env:
CIBW_BUILD: ${{ matrix.python_version }}
CIBW_ARCHS_MACOS: x86_64 arm64
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl