Skip to content

Commit 6f960f6

Browse files
authored
Merge pull request #1079 from thewtex/die-process
Die process
2 parents ff22896 + 6f5827b commit 6f960f6

File tree

26 files changed

+82
-67
lines changed

26 files changed

+82
-67
lines changed

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Pull latest Docker images
5757
run: |
58-
./src/docker/pull.sh
58+
./src/docker/pull.sh --no-debug
5959
6060
- uses: actions/setup-node@v4
6161
with:

.github/workflows/javascript-typescript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Pull latest Docker images
2424
run: |
25-
./src/docker/pull.sh
25+
./src/docker/pull.sh --no-debug
2626
2727
- uses: actions/setup-node@v4
2828
with:

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
pnpm i
2121
2222
- name: Lint commits
23-
run: pnpx commitlint --from=${{ github.event.pull_request.base.sha }}
23+
run: npx commitlint --from=${{ github.event.pull_request.base.sha }}

.github/workflows/toolchains.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- name: Pull latest Docker images
1717
run: |
18-
./src/docker/pull.sh
18+
./src/docker/pull.sh --no-debug
1919
2020
- uses: actions/download-artifact@v4
2121
continue-on-error: true
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Pull latest Docker images
5959
run: |
60-
./src/docker/pull.sh
60+
./src/docker/pull.sh --no-debug
6161
6262
- uses: actions/download-artifact@v4
6363
continue-on-error: true

.github/workflows/wasi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Pull latest Docker images
2020
run: |
21-
./src/docker/pull.sh
21+
./src/docker/pull.sh --no-debug
2222
2323
- uses: actions/setup-node@v4
2424
with:

docs/development/hacking_itk_wasm.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,8 @@ To prevent Git repository bloat, we add testing data through [CMake content link
6767

6868
## Build environment Docker images
6969

70-
Builds of the [wasm build environment Docker images](../introduction/parts.md#docker) or WebAssembly modules require [Podman (recommended)](https://podman.io/docs/installation) or [Docker](https://docs.docker.com/install/).
71-
72-
* On Linux, make sure you can run [`podman` or `docker` without `sudo`](https://askubuntu.com/questions/477551/how-can-i-use-docker-without-sudo).
73-
* On Windows, we highly recommend [Podman](https://podman.io/docs/installation).
70+
Builds of the [wasm build environment Docker images](../introduction/parts.md#docker) or WebAssembly modules require [Podman](https://podman.io/docs/installation).
71+
*Note*: on Linux, ensure the [`vfs` podman storage driver is not used for best performance](https://github.com/containers/podman/issues/13226#issuecomment-1555872420).
7472

7573
To pull the `latest` the build environment Docker images,
7674

docs/typescript/distribution/umd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ Then, specify npm scripts to develop and debug the tests and run them in an auto
8888
```js
8989
"scripts": {
9090
"start": "http-server ./dist/"
91-
"cypress:open": "pnpx cypress open",
92-
"cypress:run": "pnpx cypress run",
91+
"cypress:open": "pnpm exec cypress open",
92+
"cypress:run": "pnpm exec cypress run",
9393
"test:debug": "start-server-and-test start http://localhost:8080 cypress:open",
9494
"test": "start-server-and-test start http://localhost:8080 cypress:run"
9595
},

docs/typescript/distribution/webpack.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ Then, specify npm scripts to develop and debug the tests and run them in an auto
173173
```js
174174
"scripts": {
175175
"start": "webpack-dev-server --mode development --static ./dist/",
176-
"cypress:open": "pnpx cypress open",
177-
"cypress:run": "pnpx cypress run",
176+
"cypress:open": "pnpm exec cypress open",
177+
"cypress:run": "pnpm exec cypress run",
178178
"test:debug": "start-server-and-test start http-get://localhost:8080 cypress:open",
179179
"test": "start-server-and-test start http-get://localhost:8080 cypress:run"
180180
},

examples/hello-world/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"test": "npm run test:wasi && npm run test:node && npm run test:browser",
1212
"test:wasi": "npx itk-wasm run wasi-build/hello.wasi.wasm",
1313
"test:node": "node ./index.mjs",
14-
"cypress:open": "pnpx cypress open",
15-
"cypress:run": "pnpx cypress run",
14+
"cypress:open": "pnpm exec cypress open",
15+
"cypress:run": "pnpm exec cypress run",
1616
"start": "http-server -p 8083",
1717
"test:browser": "start-server-and-test start http://localhost:8083 cypress:run"
1818
},

examples/umd/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"description": "This example demonstrates how to use the itk-wasm UMD module from an HTML script tag.",
55
"scripts": {
66
"start": "http-server ./dist/",
7-
"cypress:open": "pnpx cypress open",
8-
"cypress:run": "pnpx cypress run",
7+
"cypress:open": "pnpm exec cypress open",
8+
"cypress:run": "pnpm exec cypress run",
99
"test:debug": "start-server-and-test start http://localhost:8080 cypress:open",
1010
"test": "start-server-and-test start http://localhost:8080 cypress:run"
1111
},

0 commit comments

Comments
 (0)