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 from earlier.
  • Loading branch information
paw-hub committed Aug 7, 2024
1 parent cb86e44 commit 3713c48
Show file tree
Hide file tree
Showing 2 changed files with 3 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
1 change: 1 addition & 0 deletions xcodegen_common.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Shared configuations for XCodeGen projects
options:
xcodeVersion: "15.3"
minimumXCodeGenVersion: 2.41.0
createIntermediateGroups: true
developmentLanguage: "en"
Expand Down

0 comments on commit 3713c48

Please sign in to comment.