Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update native C++ python workflow reference #1116

Merged
merged 3 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
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
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
Loading