From 528d54152dff8f8b029d7c363cbd8d589e311781 Mon Sep 17 00:00:00 2001 From: Arik Sosman Date: Sun, 23 Feb 2025 23:35:39 -0800 Subject: [PATCH] Skip non-host architecture --- .github/actions/install-dependencies/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index d547a70f..3a901fdd 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -29,9 +29,9 @@ runs: shell: bash run: | rustup toolchain install nightly-2022-05-13-aarch64-apple-darwin - rustup toolchain install nightly-2022-05-13-x86_64-apple-darwin --force-non-host + # rustup toolchain install nightly-2022-05-13-x86_64-apple-darwin --force-non-host rustup target add aarch64-apple-darwin aarch64-apple-ios x86_64-apple-ios - rustup component add rust-src --toolchain nightly-2022-05-13-x86_64-apple-darwin + # rustup component add rust-src --toolchain nightly-2022-05-13-x86_64-apple-darwin rustup component add rust-src --toolchain nightly-2022-05-13-aarch64-apple-darwin - name: Load Cache if: ${{ inputs.configureRustNightly == 'true' }}