Merge pull request #1272 from thewtex/compare-meshes-data #2305
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: Python Wasm | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
pyodide-version: 0.24.1 | |
defaults: | |
run: | |
shell: bash -leo pipefail {0} {0} | |
jobs: | |
itkwasm-python: | |
runs-on: ${{ matrix.os }} | |
env: | |
python-version: ${{ format('3.{0}', matrix.python-minor-version) }} | |
strategy: | |
max-parallel: 5 | |
matrix: | |
os: [ubuntu-22.04, windows-2022, macos-14] | |
python-minor-version: [11, 12] | |
package: [compress-stringify, compare-images, dicom, mesh-io, image-io, downsample] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
- name: Set up Python ${{ env.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.python-version }} | |
- name: Free Disk Space (Ubuntu) | |
if: ${{ matrix.os == 'ubuntu-22.04' }} | |
uses: jlumbroso/free-disk-space@main | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: true | |
- name: Build build:gen:python | |
if: ${{ matrix.os == 'ubuntu-22.04' }} | |
run: | | |
pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" build:wasi | |
- name: Build bindgen:python | |
if: ${{ matrix.os == 'ubuntu-22.04' }} | |
run: | | |
pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" bindgen:python | |
- name: Build build:python:wasi | |
if: ${{ matrix.os == 'ubuntu-22.04' || (matrix.package != 'mesh-io' && matrix.package != 'image-io' && matrix.package != 'downsample' ) }} | |
run: | | |
pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" build:python:wasi | |
- name: Test python on system | |
if: ${{ matrix.package != 'dicom' && matrix.os == 'ubuntu-22.04' || (matrix.package != 'mesh-io' && matrix.package != 'dicom' && matrix.package != 'image-io' && matrix.package != 'downsample' ) }} | |
run: | | |
pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" test:python:wasi | |
- uses: pyodide/pyodide-actions/install-browser@e3edcb8db4f1ec4604e402013f3ae2ee9f114441 | |
if: ${{ matrix.python-minor-version > 10 }} | |
with: | |
runner: selenium | |
browser: chrome | |
browser-version: latest | |
- name: Test python on chrome | |
if: ${{ matrix.python-minor-version > 10 && matrix.package != 'dicom' && matrix.os == 'ubuntu-22.04' || (matrix.package != 'mesh-io' && matrix.package != 'image-io' && matrix.package != 'dicom' && matrix.os != 'macos-14' )}} | |
run: | | |
pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" test:python:emscripten |