Skip to content

Commit 9f0679b

Browse files
committed
Update CI to run with macOS 15, iOS 18.2, and Xcode 16.2
1 parent 73703b8 commit 9f0679b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/CI-iOS.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# This workflow contains a single job called "build-and-test"
1313
build-and-test:
1414
# The type of runner that the job will run on
15-
runs-on: macos-14-xlarge
15+
runs-on: macos-15-xlarge
1616

1717
timeout-minutes: 8
1818

@@ -22,10 +22,10 @@ jobs:
2222
- uses: actions/checkout@v4
2323

2424
- name: Select Xcode
25-
run: sudo xcode-select -switch /Applications/Xcode_15.4.app
25+
run: sudo xcode-select -switch /Applications/Xcode_16.2.app
2626

2727
- name: Xcode version
2828
run: /usr/bin/xcodebuild -version
2929

3030
- name: Build and Test
31-
run: xcodebuild clean build test -workspace EssentialApp/EssentialApp.xcworkspace -scheme "CI_iOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 15 Pro,OS=17.5" ONLY_ACTIVE_ARCH=YES
31+
run: xcodebuild clean build test -workspace EssentialApp/EssentialApp.xcworkspace -scheme "CI_iOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 16 Pro,OS=18.2" ONLY_ACTIVE_ARCH=YES

.github/workflows/CI-macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# This workflow contains a single job called "build-and-test"
1313
build-and-test:
1414
# The type of runner that the job will run on
15-
runs-on: macos-14
15+
runs-on: macos-15
1616

1717
timeout-minutes: 8
1818

@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323

2424
- name: Select Xcode
25-
run: sudo xcode-select -switch /Applications/Xcode_15.4.app
25+
run: sudo xcode-select -switch /Applications/Xcode_16.2.app
2626

2727
- name: Xcode version
2828
run: /usr/bin/xcodebuild -version

.github/workflows/Deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# This workflow contains a single job called "build-and-deploy"
1313
build-and-deploy:
1414
# The type of runner that the job will run on
15-
runs-on: macos-14
15+
runs-on: macos-15
1616

1717
# Steps represent a sequence of tasks that will be executed as part of the job
1818
steps:
@@ -36,7 +36,7 @@ jobs:
3636
security set-key-partition-list -S apple-tool:,apple: -s -k "" ~/Library/Keychains/build.keychain
3737
3838
- name: Select Xcode
39-
run: sudo xcode-select -switch /Applications/Xcode_15.4.app
39+
run: sudo xcode-select -switch /Applications/Xcode_16.2.app
4040

4141
- name: Xcode version
4242
run: /usr/bin/xcodebuild -version

0 commit comments

Comments
 (0)