Skip to content

Commit

Permalink
Merge pull request #1116 from thewtex/ci-version
Browse files Browse the repository at this point in the history
ci: update native C++ python workflow reference
  • Loading branch information
thewtex authored Apr 15, 2024
2 parents 9e7a2c9 + 8764c1b commit 6868e74
Show file tree
Hide file tree
Showing 6 changed files with 168 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cxx-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ env:

jobs:
cxx-build-workflow:
uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4rc03-arm-wheels
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.0
with:
itk-module-deps: 'MeshToPolyData@v0.11rc03'
ctest-options: '-E itkPipelineTest'

python-build-workflow:
uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4rc03-arm-wheels
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.0
with:
itk-module-deps: 'InsightSoftwareConsortium/ITKMeshToPolyData@v0.11rc03'
secrets:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -99,6 +100,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v4
with:
Expand Down
35 changes: 27 additions & 8 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -50,6 +51,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -114,6 +116,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -148,6 +151,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -194,6 +198,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- name: Test Webpack Example on Chrome
uses: cypress-io/github-action@v6
Expand All @@ -220,6 +225,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- name: Test Vite Example on Chrome
uses: cypress-io/github-action@v6
Expand All @@ -243,27 +249,38 @@ jobs:
working-directory: ./examples/debugging

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v3
- name: Install
uses: pnpm/action-setup@v2
with:
node-version: '18'
version: 8
run_install: true

- uses: actions/setup-node@v4
with:
node-version: '20'

- name: Build dependencies
run: |
pnpm run --filter 'itk-wasm' build
- name: Install
run: |
npm install
pnpm install
- name: Build
run: |
npm run native-build
npm run emscripten-build-release
npm run emscripten-build-debug
npm run wasi-build-debug
pnpm native-build
pnpm emscripten-build-release
pnpm emscripten-build-debug
pnpm wasi-build-debug
test-different-input-types-example:
name: different-input-types
Expand All @@ -279,6 +296,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -307,6 +325,7 @@ jobs:
uses: jlumbroso/free-disk-space@main
with:
large-packages: false
tool-cache: true

- uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion examples/debugging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"license": "Apache-2.0",
"dependencies": {
"http-server": "^14.1.0",
"itk-wasm": "^1.0.0-b.77"
"itk-wasm": "workspace:^"
}
}
Loading

0 comments on commit 6868e74

Please sign in to comment.