From 362a9eee31c21a508d42bd2b7b66dc6dbe0f22c2 Mon Sep 17 00:00:00 2001 From: Kariy Date: Thu, 28 Sep 2023 16:56:44 +0700 Subject: [PATCH] install protoc in ci --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a19186588f..a67fc4c884 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,10 +34,11 @@ jobs: toolchain: ${{ env.RUST_VERSION }} targets: wasm32-unknown-unknown - uses: Swatinem/rust-cache@v2 - - name: "Ensure `torii-client` crate is wasmable" + - uses: arduino/setup-protoc@v2 + - name: "Ensure `torii-client` crate is WASM-able" run: | cargo build -r --target wasm32-unknown-unknown -p torii-client - - name: "Ensure `torii-client-wasm` crate is wasmable" + - name: "Ensure `torii-client-wasm` crate is WASM-able" run: | cargo build -r --target wasm32-unknown-unknown --manifest-path crates/torii/client/wasm/Cargo.toml