Skip to content

Commit

Permalink
[ios] Use macOS 14+ARM in workflow; bump xcodeVersion
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
paw-hub committed Aug 6, 2024
1 parent 22ac855 commit 8ba2f1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/swift-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8ba2f1a

Please sign in to comment.