Build python-libsbml Wheel (pyodide) #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |