Change Emscripten docker image to the official one which is used for testing the single-file feature.

This commit is contained in:
yoshihitoh 2020-07-07 19:10:12 +09:00
parent a035654ab8
commit bc5fe33243
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ emscripten_docker_build() {
docker container run --rm \
--volume $PWD:/code \
--workdir /code \
trzeci/emscripten \
emscripten/emsdk:latest \
emcc $CC_FLAGS -s WASM=1 -I. -o $OUT_WASM $IN_FILES
# Did compilation work?
if [ $? -ne 0 ]; then

View File

@ -31,7 +31,7 @@ emscripten_docker_build() {
docker container run --rm \
--volume $PWD:/code \
--workdir /code \
trzeci/emscripten \
emscripten/emsdk:latest \
emcc $CC_FLAGS -s WASM=1 -I. -o $OUT_WASM $IN_FILES
# Did compilation work?
if [ $? -ne 0 ]; then