From bc5fe33243cdf4fe7fc3b7f5c6c0c1a6d886ac5e Mon Sep 17 00:00:00 2001 From: yoshihitoh Date: Tue, 7 Jul 2020 19:10:12 +0900 Subject: [PATCH] Change Emscripten docker image to the official one which is used for testing the single-file feature. --- contrib/single_file_libs/build_decoder_test.sh | 2 +- contrib/single_file_libs/build_library_test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/single_file_libs/build_decoder_test.sh b/contrib/single_file_libs/build_decoder_test.sh index 2ed25bce1..13f52bd63 100755 --- a/contrib/single_file_libs/build_decoder_test.sh +++ b/contrib/single_file_libs/build_decoder_test.sh @@ -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 diff --git a/contrib/single_file_libs/build_library_test.sh b/contrib/single_file_libs/build_library_test.sh index 54b3eae20..367b8de78 100755 --- a/contrib/single_file_libs/build_library_test.sh +++ b/contrib/single_file_libs/build_library_test.sh @@ -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 -- 2.47.2