From b5d40e9bf53f71c91fa48940aa6354f1e318dfd1 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Wed, 13 Sep 2023 18:58:24 +0200 Subject: [PATCH] install all the rust toolchains --- .github/workflows/build.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) 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: