install all the rust toolchains

This commit is contained in:
Quentin Gliech
2023-09-13 18:58:24 +02:00
parent eb267424d6
commit b5d40e9bf5
+9
View File
@@ -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: