install wasm-pack using pre-built binary to avoid c compiler dependency
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Has been skipped
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Failing after 1m1s
Podman Rootless Demo / deploy-prod (push) Has been skipped
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Has been skipped
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Failing after 1m1s
Podman Rootless Demo / deploy-prod (push) Has been skipped
This commit is contained in:
parent
9d35c739ce
commit
bb505df141
1 changed files with 5 additions and 2 deletions
|
|
@ -226,8 +226,11 @@ jobs:
|
|||
echo '[net]' >> $HOME/.cargo/config.toml
|
||||
echo 'git-fetch-with-cli = true' >> $HOME/.cargo/config.toml
|
||||
|
||||
# Install wasm-pack
|
||||
cargo install wasm-pack
|
||||
# Install wasm-pack using pre-built binary to avoid C compiler dependency
|
||||
wget https://github.com/rustwasm/wasm-pack/releases/download/v0.13.1/wasm-pack-v0.13.1-x86_64-unknown-linux-musl.tar.gz
|
||||
tar -xzf wasm-pack-v0.13.1-x86_64-unknown-linux-musl.tar.gz
|
||||
mv wasm-pack-v0.13.1-x86_64-unknown-linux-musl/wasm-pack /usr/local/bin/
|
||||
chmod +x /usr/local/bin/wasm-pack
|
||||
|
||||
- name: Build WASM module
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue