Skip to content

Commit c5401bc

Browse files
install dependencies
1 parent 6f9310f commit c5401bc

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/codecov.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,21 @@ jobs:
2121
- name: Checkout submodules
2222
run: git submodule update --init --recursive
2323

24-
- uses: dtolnay/rust-toolchain@stable
24+
- name: Install stable toolchain
25+
uses: dtolnay/rust-toolchain@stable
26+
27+
- uses: Swatinem/rust-cache@v2
2528

2629
- name: Install llvm-tools and grcov
2730
run: |
2831
rustup component add llvm-tools-preview
2932
cargo install grcov
3033
34+
- name: Install dependencies
35+
run: |
36+
sudo apt-get install -y cmake ninja-build binaryen;
37+
cargo install wasm-pack --version=0.13.1;
38+
3139
- name: Clean previous builds
3240
run: cargo clean
3341

0 commit comments

Comments
 (0)