diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fcdf4e4e1..68a2cc524 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -41,6 +41,15 @@ jobs: with: node-version: 18 + - name: Install Rust toolchain + run: | + rustup toolchain install stable + rustup target add x86_64-unknown-linux-musl + rustup target add aarch64-unknown-linux-musl + rustup target add x86_64-apple-darwin + rustup target add aarch64-apple-darwin + rustup default stable + - name: Setup Rust build cache uses: Swatinem/rust-cache@v2.7.0 with: