Skip to content

Commit 1e3e5b5

Browse files
ci: add rust and wasm toolchain versions to CI output
Print versions of rustc, wasm-pack and wasm-opt during CI runs for better debugging.
1 parent 1d0f307 commit 1e3e5b5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,16 @@ jobs:
3838
- name: Install wasm-pack
3939
run: |
4040
rustup component add rustfmt
41-
cargo install wasm-pack
41+
cargo install wasm-pack --version 0.13.1
42+
cargo install wasm-opt --version 0.116.1
4243
4344
- name: Build Info
4445
run: |
4546
echo "node $(node --version)"
4647
echo "npm $(npm --version)"
48+
echo "rustc $(rustc --version)"
49+
echo "wasm-pack $(wasm-pack --version)"
50+
echo "wasm-opt $(wasm-opt --version)"
4751
git --version
4852
echo "base ref $GITHUB_BASE_REF"
4953
echo "head ref $GITHUB_HEAD_REF"

0 commit comments

Comments
 (0)