mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-15 09:54:48 +00:00
a582ca8a8e
* tests: run on pyodide Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: use cibuildwheel for pyodide test Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * tests: revert changes to test_embed Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
31 lines
582 B
YAML
31 lines
582 B
YAML
name: WASM
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-wasm-emscripten:
|
|
name: Pyodide wheel
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
|
|
- uses: pypa/cibuildwheel@v2.19
|
|
env:
|
|
PYODIDE_BUILD_EXPORTS: whole_archive
|
|
CFLAGS: -fexceptions
|
|
LDFLAGS: -fexceptions
|
|
with:
|
|
package-dir: tests
|
|
only: cp312-pyodide_wasm32
|