From 8ba2f1af5b92878ee517b938160bd9e5bf8f204f Mon Sep 17 00:00:00 2001 From: paw Date: Tue, 6 Aug 2024 17:19:27 +0200 Subject: [PATCH] [ios] Use macOS 14+ARM in workflow; bump xcodeVersion We no longer use libcrypto in builds, so we are not beholden to an x86 dependency for simulator. Bumping xcode version also fixes PinsStorage issue. --- .github/workflows/swift-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/swift-test.yml b/.github/workflows/swift-test.yml index 1282bd25edfe..4e17d7ad6a3a 100644 --- a/.github/workflows/swift-test.yml +++ b/.github/workflows/swift-test.yml @@ -18,7 +18,7 @@ env: jobs: test-swift: - runs-on: macos-13 # macos 14 is ARM only and our tests don't run on ARM simulators due to libcrypto + runs-on: macos-14 permissions: actions: none @@ -55,7 +55,7 @@ jobs: cargo --version rustc --version - name: Add rust target - run: rustup target add x86_64-apple-ios # aarch64-apple-ios-sim + run: rustup target add aarch64-apple-ios-sim - name: Lint working-directory: ./app-ios run: ./lint.sh lint:check