install dependencies

This commit is contained in:
Ivan Folgueira Bande 2025-10-09 15:08:41 +02:00
parent 6f9310fe49
commit c5401bc4a4
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7

View File

@ -21,13 +21,21 @@ jobs:
- name: Checkout submodules
run: git submodule update --init --recursive
- uses: dtolnay/rust-toolchain@stable
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install llvm-tools and grcov
run: |
rustup component add llvm-tools-preview
cargo install grcov
- name: Install dependencies
run: |
sudo apt-get install -y cmake ninja-build binaryen;
cargo install wasm-pack --version=0.13.1;
- name: Clean previous builds
run: cargo clean