Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wasm-pack #32239

Merged
merged 1 commit into from
Jun 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ci/docker-rust/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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