Test Emscripten/Pyodide build #126
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: Test Emscripten/Pyodide build | |
on: | |
pull_request: | |
branches: | |
- main | |
- maintenance/** | |
# Note: this workflow gets triggered on the same schedule as the | |
# wheels.yml workflow to upload WASM wheels to Anaconda.org. | |
schedule: | |
# ┌───────────── minute (0 - 59) | |
# │ ┌───────────── hour (0 - 23) | |
# │ │ ┌───────────── day of the month (1 - 31) | |
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) | |
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) | |
# │ │ │ │ │ | |
- cron: "42 2 * * SUN,WED" | |
workflow_dispatch: | |
inputs: | |
push_wheels: | |
# Can be 'true' or 'false'. Default is 'false'. | |
# Warning: this will overwrite existing wheels. | |
description: > | |
Push wheels to Anaconda.org if the build succeeds | |
required: false | |
default: 'false' | |
env: | |
FORCE_COLOR: 3 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
build-wasm-emscripten: | |
name: Build NumPy distribution for Pyodide | |
runs-on: ubuntu-22.04 | |
# To enable this workflow on a fork, comment out: | |
if: github.repository == 'numpy/numpy' | |
steps: | |
- name: Checkout NumPy | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
submodules: recursive | |
fetch-tags: true | |
- uses: pypa/cibuildwheel@bd033a44476646b606efccdd5eed92d5ea1d77ad # v2.20.0 | |
env: | |
CIBW_PLATFORM: pyodide | |
- name: Upload wheel artifact(s) | |
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 | |
with: | |
name: cp312-pyodide_wasm32 | |
path: ./wheelhouse/*.whl | |
# Push to https://anaconda.org/scientific-python-nightly-wheels/numpy | |
# WARNING: this job will overwrite any existing WASM wheels. | |
- name: Push to Anaconda PyPI index | |
if: >- | |
(github.repository == 'numpy/numpy') && | |
(github.event_name == 'workflow_dispatch' && github.event.inputs.push_wheels == 'true') || | |
(github.event_name == 'schedule') | |
uses: scientific-python/upload-nightly-action@b67d7fcc0396e1128a474d1ab2b48aa94680f9fc # v0.5.0 | |
with: | |
artifacts_path: wheelhouse/ | |
anaconda_nightly_upload_token: ${{ secrets.NUMPY_NIGHTLY_UPLOAD_TOKEN }} |