From 1f0b3bae00a51ce87f0b856cc35cd978ea28d97d Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Tue, 12 Aug 2025 08:35:45 -0600 Subject: [PATCH] rustup install CI targets --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88ecc35..d8b600b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,12 @@ jobs: key: macos-cargo-${{ hashFiles('**/Cargo.lock', 'justfile') }} restore-keys: macos-cargo- + - name: Install rustup targets + run: | + rustup target add aarch64-apple-ios && rustup target add x86_64-apple-ios && \ + rustup target add aarch64-apple-ios-sim && rustup target add aarch64-apple-darwin && \ + rustup target add x86_64-apple-darwin + - name: Build all Apple targets and examples/tools run: | just macos-ci-check