ci: use stable wasm-pack version in docker (#31338)

* ci: use latest wasm-pack version in docker

* print wasm-pack version in test-check.sh
This commit is contained in:
Yihau Chen 2023-04-25 22:08:01 +08:00 committed by GitHub
parent cc6c454076
commit 186b0d77f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,7 @@ RUN set -x \
&& cargo install mdbook \
&& cargo install mdbook-linkcheck \
&& cargo install svgbob_cli \
&& cargo install --git https://github.com/rustwasm/wasm-pack --rev b4e619c8a13a8441b804895348afbfd4fb1a68a3 \
&& cargo install wasm-pack \
&& cargo install sccache \
&& rustc --version \
&& cargo --version

View File

@ -48,6 +48,8 @@ echo --- build environment
grcov --version
sccache --version
wasm-pack --version
)
export RUST_BACKTRACE=1