We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a4211f + fe58e7c commit a6c4a1bCopy full SHA for a6c4a1b
.github/workflows/emscripten.yml
@@ -29,12 +29,15 @@ jobs:
29
if: ${{ matrix.target=='js' }}
30
working-directory: libheif
31
run: |
32
- ./scripts/run-ci.sh
+ 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
36
- name: Run build and tests (WASM)
37
if: ${{ matrix.target=='wasm' }}
38
39
- 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
41
chmod +x ./scripts/run-ci-wasm.sh
42
./scripts/run-ci-wasm.sh
43
ls -la
0 commit comments