From db7fd338be93ec808b87c7388cac4f8a5c392455 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 10 Jun 2021 04:35:51 +0900 Subject: [PATCH] Use wasmtime v0.27.0 Since dev doesn't have artifact for x86_64 Linux. --- ci/docker/wasm32-wasi/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/docker/wasm32-wasi/Dockerfile b/ci/docker/wasm32-wasi/Dockerfile index 6f5d58352a586..b1838a3dacd6e 100644 --- a/ci/docker/wasm32-wasi/Dockerfile +++ b/ci/docker/wasm32-wasi/Dockerfile @@ -20,9 +20,9 @@ RUN git clone https://github.com/WebAssembly/wasi-libc && \ RUN apt-get install -y --no-install-recommends llvm RUN make -C wasi-libc install -j $(nproc) INSTALL_DIR=/wasi-libc -RUN curl -L https://github.com/bytecodealliance/wasmtime/releases/download/dev/wasmtime-dev-x86_64-linux.tar.xz | \ +RUN curl -L hhttps://github.com/bytecodealliance/wasmtime/releases/download/v0.27.0/wasmtime-v0.27.0-x86_64-linux.tar.xz | \ tar xJf - -ENV PATH=$PATH:/wasmtime-dev-x86_64-linux +ENV PATH=$PATH:/wasmtime-v0.27.0-x86_64-linux COPY docker/wasm32-wasi/clang.sh /wasi-libc/bin/clang RUN apt-get install -y --no-install-recommends lld