Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 31 additions & 3 deletions .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ on:
- main

jobs:
native-build-test-workflow:
runs-on: ubuntu-22.04
itk-wasm-native-build-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
package: [compare-images]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -21,4 +25,28 @@ jobs:

- name: Build and Test ITK-Wasm
run: |
pixi run test-itk-wasm
pixi run test-itk-wasm

- name: Upload ITK-Wasm build artifacts
uses: actions/upload-artifact@v4
with:
name: itk-wasm-build-${{ matrix.os }}
path: .

packages-native-build-test:
needs: itk-wasm-native-build-test
runs-on: ${{ matrix.os }}
strategy:
matrix:
package: [compare-images]
os: [ubuntu-latest]
steps:
- name: Download ITK-Wasm build artifacts
uses: actions/download-artifact@v4
with:
name: itk-wasm-build-${{ matrix.os }}

- name: Build and Test Package
run: |
echo "Running on ${{ matrix.os }} for package ${{ matrix.package }}"
pixi run test-${{ matrix.package }}
Loading