Skip to content

Commit a6c4a1b

Browse files
committed
Merge branch 'no-eval'
2 parents 9a4211f + fe58e7c commit a6c4a1b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/emscripten.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,15 @@ jobs:
2929
if: ${{ matrix.target=='js' }}
3030
working-directory: libheif
3131
run: |
32-
./scripts/run-ci.sh
32+
sed s/USE_WASM=0/USE_WASM=0\ USE_UNSAFE_EVAL=0/g ./scripts/run-ci.sh > ./scripts/run-ci-js.sh
33+
chmod +x ./scripts/run-ci-js.sh
34+
./scripts/run-ci-js.sh
35+
ls -la
3336
- name: Run build and tests (WASM)
3437
if: ${{ matrix.target=='wasm' }}
3538
working-directory: libheif
3639
run: |
37-
sed s/USE_WASM=0/USR_WASM=1/g ./scripts/run-ci.sh > ./scripts/run-ci-wasm.sh
40+
sed s/USE_WASM=0/USE_WASM=1\ USE_UNSAFE_EVAL=0/g ./scripts/run-ci.sh > ./scripts/run-ci-wasm.sh
3841
chmod +x ./scripts/run-ci-wasm.sh
3942
./scripts/run-ci-wasm.sh
4043
ls -la

0 commit comments

Comments
 (0)