Skip to content

Commit e340e3a

Browse files
committed
Update CI to run with macOS 14, iOS 17.4, and Xcode 15.3
1 parent 405bf74 commit e340e3a

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-13-xlarge
15+
runs-on: macos-14-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.2.app
25+
run: sudo xcode-select -switch /Applications/Xcode_15.3.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.2" 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 15 Pro,OS=17.4" 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-13
15+
runs-on: macos-14
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.2.app
25+
run: sudo xcode-select -switch /Applications/Xcode_15.3.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-13
15+
runs-on: macos-14
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.2.app
39+
run: sudo xcode-select -switch /Applications/Xcode_15.3.app
4040

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

0 commit comments

Comments
 (0)