Merge pull request #39 from jonas-w/feat/fix_timeout #64
This file contains 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 Pyodide wheel | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events | |
push: | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# Build for pyodide 0.21.0 | |
Pyodide_test_and_build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.10.2 | |
- uses: mymindstorm/setup-emsdk@v11 | |
with: | |
version: 3.1.14 | |
- run: pip install pyodide-build==0.21.0 | |
- run: pyodide build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: pyodide wheel | |
path: dist | |
- run: bash ./setup_test_env.sh |