From: yoshihitoh Date: Tue, 7 Jul 2020 10:10:12 +0000 (+0900) Subject: Change Emscripten docker image to the official one which is used for testing the... X-Git-Tag: v1.4.7~126^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2227%2Fhead;p=thirdparty%2Fzstd.git Change Emscripten docker image to the official one which is used for testing the single-file feature. --- 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