From a336c13db7a94a60dfbd446fe07a5ae912a80a8d Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Thu, 22 Jun 2023 13:58:53 +0900 Subject: [PATCH] Fix wasm-pack --- ci/docker-rust/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/docker-rust/Dockerfile b/ci/docker-rust/Dockerfile index 3dcf5f723187b0..429ac8929bcfae 100644 --- a/ci/docker-rust/Dockerfile +++ b/ci/docker-rust/Dockerfile @@ -2,6 +2,7 @@ # ci/rust-version.sh to pick up the new image tag FROM rust:1.69.0 +# we need to pin wasm-pack due to https://github.com/rustwasm/wasm-pack/issues/1308 RUN set -x \ && apt update \ && apt-get install apt-transport-https \ @@ -37,7 +38,7 @@ RUN set -x \ && cargo install mdbook \ && cargo install mdbook-linkcheck \ && cargo install svgbob_cli \ - && cargo install wasm-pack \ + && cargo install --version 0.11.1 wasm-pack \ && cargo install sccache \ && rustc --version \ && cargo --version