Files
ci-emsdk/docker/test_dockerimage.sh
Sam Clegg 147abfe46c Make emscripten directory world writable (#578)
Without this emscripten will default to using $HOME for the
emscripten cache rather than the embedded one.
2020-07-31 13:41:13 -07:00

20 lines
288 B
Bash
Executable File

#!/bin/bash
set -ex
sudo -u nobody `which emcc` --version
which asm2wasm
which llvm-ar
which emsdk
node --version
npm --version
python3 --version
pip3 --version
em++ --version
emcc --version
java -version
cmake --version
# cleanup after test
find ${EMSDK} -name "*.pyc" -exec rm {} \;