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
|
name: WASM
on:
workflow_dispatch:
pull_request:
branches:
- master
- develop
release:
types:
- published
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-pyodide:
name: Pyodide cibuildwheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- uses: pypa/cibuildwheel@v3.3
env:
CIBW_PLATFORM: pyodide
- name: Upload wheels
uses: actions/upload-artifact@v6
with:
name: pyodide-wheel
path: wheelhouse/*.whl
|