File tree Expand file tree Collapse file tree 5 files changed +21
-7
lines changed
Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change @@ -6,8 +6,22 @@ exe=$(ociExe)
66
77set -eo pipefail
88
9+ debug=true
10+ for param; do
11+ if [[ $param == ' --no-debug' ]]; then
12+ debug=false
13+ else
14+ newparams+=(" $param " )
15+ fi
16+ done
17+ set -- " ${newparams[@]} " # overwrites the original positional params
18+
919$exe pull quay.io/itkwasm/emscripten:latest
10- $exe pull quay.io/itkwasm/emscripten:latest-debug
20+ if $debug ; then
21+ $exe pull quay.io/itkwasm/emscripten:latest-debug
22+ fi
1123
1224$exe pull quay.io/itkwasm/wasi:latest
13- $exe pull quay.io/itkwasm/wasi:latest-debug
25+ if $debug ; then
26+ $exe pull quay.io/itkwasm/wasi:latest-debug
27+ fi
You can’t perform that action at this time.
0 commit comments