From 9acd45d4c08f0ee36b6a5e561b25e7a5d7bab3a5 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 10 Jun 2021 04:35:51 +0900 Subject: [PATCH] Use wasmtime v0.28.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..5ce8a2609df14 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 https://github.com/bytecodealliance/wasmtime/releases/download/v0.28.0/wasmtime-v0.28.0-x86_64-linux.tar.xz | \ tar xJf - -ENV PATH=$PATH:/wasmtime-dev-x86_64-linux +ENV PATH=$PATH:/wasmtime-v0.28.0-x86_64-linux COPY docker/wasm32-wasi/clang.sh /wasi-libc/bin/clang RUN apt-get install -y --no-install-recommends lld