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

[Deps] Run cargo update #2604

Open
wants to merge 5 commits into
base: staging
Choose a base branch
from
Open
Show file tree
Hide file tree
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
14 changes: 11 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -844,10 +844,18 @@ jobs:
- run:
no_output_timeout: 30m
command: |
sudo apt-get install nodejs
(cargo install wasm-pack || true)
# The commands required to install current Node.js come from https://nodejs.org/en/download
# The versions of nvm and Node.js may need to be periodically updated
# Download and install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
# Add nvm to the path
source /home/circleci/.profile
# Download and install Node.js
nvm install 22
# Install wasm-pack
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
# Run the tests
cd wasm && wasm-pack test --node
# cargo test --target wasm32-unknown-unknown
- clear_environment:
cache_key: v1.0.0-rust-1.81.0-snarkvm-wasm-cache

Expand Down
Loading