Test Pyodide build #205
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 Pyodide build | |
on: | |
push: | |
branches: | |
# Runs on every merge to main to upload .dev0 wheels to anaconda.org | |
- main | |
- v1.** | |
pull_request: | |
branches: | |
- main | |
- v1.** | |
# Make it possible to upload wheels manually if needed | |
workflow_dispatch: | |
inputs: | |
push_wheels: | |
description: > | |
'Push wheels to Anaconda if "true". Default is "false". Warning: this will overwrite existing wheels.' | |
required: false | |
default: "false" | |
# Upload wheels to anaconda.org on a schedule | |
schedule: | |
# Run at 0300 hours on days 3 and 17 of the month | |
- cron: "0 3 3,17 * *" | |
env: | |
FORCE_COLOR: 3 | |
jobs: | |
build_wasm_emscripten: | |
name: Build PyWavelets for Pyodide | |
runs-on: ubuntu-22.04 | |
# Comment out the following line to test changes on a fork | |
if: github.repository == 'PyWavelets/pywt' | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Build and test PyWavelets | |
uses: pypa/cibuildwheel@bd033a44476646b606efccdd5eed92d5ea1d77ad # v2.20.0 | |
env: | |
CIBW_PLATFORM: pyodide | |
CIBW_TEST_REQUIRES: pytest matplotlib | |
CIBW_TEST_COMMAND: python -c "import pywt; pywt.test(extra_argv=['-m', 'not slow'])" | |
# https://anaconda.org/scientific-python-nightly-wheels/pywavelets | |
# WARNING: this job will overwrite existing wheels. | |
- name: Push wheels to Anaconda PyPI index | |
if: >- | |
(github.repository == 'PyWavelets/pywt') && | |
(github.event_name == 'push' && github.ref == 'refs/heads/main') || | |
(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.ANACONDA_ORG_UPLOAD_TOKEN }} |