From ac277c518ab0510c6304a6ec05aed372f9575f63 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 8 Mar 2023 16:22:06 -0800 Subject: [PATCH] Don't try to be clever with arch --- 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 e8aa8e0b46..fff41a0eb8 100644 --- a/ci/docker/wasm32-wasi/Dockerfile +++ b/ci/docker/wasm32-wasi/Dockerfile @@ -7,8 +7,8 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \ xz-utils \ clang -RUN curl -L https://github.com/bytecodealliance/wasmtime/releases/download/dev/wasmtime-dev-$(arch)-linux.tar.xz | tar xJf - -ENV PATH=$PATH:/wasmtime-dev-$(arch)-linux +RUN curl -L https://github.com/bytecodealliance/wasmtime/releases/download/dev/wasmtime-dev-x86_64-linux.tar.xz | tar xJf - +ENV PATH=$PATH:/wasmtime-dev-x86_64-linux ENV CARGO_TARGET_WASM32_WASI_RUNNER="wasmtime \ --wasm-features=threads,relaxed-simd \