Skip to content

Commit 0d1ed8e

Browse files
committed
Get CI passing again
1 parent 29bea84 commit 0d1ed8e

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Bundle Install
3333
run: bundle install
3434
- name: Select Xcode Version
35-
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
35+
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
3636
- name: Build and Test Framework
3737
run: Scripts/build.swift ${{ matrix.platforms }} xcode
3838
- name: Upload Coverage Reports
@@ -48,7 +48,7 @@ jobs:
4848
- name: Bundle Install
4949
run: bundle install
5050
- name: Select Xcode Version
51-
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
51+
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
5252
- name: Lint Podspec
5353
run: bundle exec pod lib lint --verbose --fail-fast --swift-version=6.0 --allow-warnings # Cocoapods v1.6 now warns about potential naming colisions. We can fix this in the next breaking change.
5454
carthage:
@@ -61,7 +61,7 @@ jobs:
6161
- name: Bundle Install
6262
run: bundle install
6363
- name: Select Xcode Version
64-
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
64+
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
6565
- name: Install Carthage
6666
run: brew outdated carthage || brew upgrade carthage
6767
- name: Build Framework
@@ -85,7 +85,7 @@ jobs:
8585
- name: Bundle Install
8686
run: bundle install
8787
- name: Select Xcode Version
88-
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
88+
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
8989
- name: Build Framework
9090
run: Scripts/build.swift ${{ matrix.platforms }} spm
9191
readme-validation:

Scripts/build.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ enum Platform: String, CustomStringConvertible {
2929
var destination: String {
3030
switch self {
3131
case .iOS_18:
32-
"platform=iOS Simulator,OS=18.0,name=iPad (10th generation)"
32+
"platform=iOS Simulator,OS=18.4,name=iPad (10th generation)"
3333

3434
case .tvOS_18:
35-
"platform=tvOS Simulator,OS=18.0,name=Apple TV"
35+
"platform=tvOS Simulator,OS=18.2,name=Apple TV"
3636

3737
case .macOS_15:
3838
"platform=OS X"
3939

4040
case .watchOS_11:
41-
"OS=11.0,name=Apple Watch Series 10 (46mm)"
41+
"OS=11.2,name=Apple Watch Series 10 (46mm)"
4242
}
4343
}
4444

@@ -51,7 +51,7 @@ enum Platform: String, CustomStringConvertible {
5151
"appletvsimulator"
5252

5353
case .macOS_15:
54-
"macosx15.0"
54+
"macosx15.5"
5555

5656
case .watchOS_11:
5757
"watchsimulator"

0 commit comments

Comments
 (0)