Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Bundle Install
run: bundle install
- name: Select Xcode Version
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
- name: Build and Test Framework
run: Scripts/build.swift ${{ matrix.platforms }} xcode
- name: Upload Coverage Reports
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Bundle Install
run: bundle install
- name: Select Xcode Version
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
- name: Lint Podspec
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.
carthage:
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Bundle Install
run: bundle install
- name: Select Xcode Version
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
- name: Install Carthage
run: brew outdated carthage || brew upgrade carthage
- name: Build Framework
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Bundle Install
run: bundle install
- name: Select Xcode Version
run: sudo xcode-select --switch /Applications/Xcode_16.app/Contents/Developer
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
- name: Build Framework
run: Scripts/build.swift ${{ matrix.platforms }} spm
readme-validation:
Expand Down
8 changes: 4 additions & 4 deletions Scripts/build.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ enum Platform: String, CustomStringConvertible {
var destination: String {
switch self {
case .iOS_18:
"platform=iOS Simulator,OS=18.0,name=iPad (10th generation)"
"platform=iOS Simulator,OS=18.4,name=iPad (10th generation)"

case .tvOS_18:
"platform=tvOS Simulator,OS=18.0,name=Apple TV"
"platform=tvOS Simulator,OS=18.2,name=Apple TV"

case .macOS_15:
"platform=OS X"

case .watchOS_11:
"OS=11.0,name=Apple Watch Series 10 (46mm)"
"OS=11.2,name=Apple Watch Series 10 (46mm)"
}
}

Expand All @@ -51,7 +51,7 @@ enum Platform: String, CustomStringConvertible {
"appletvsimulator"

case .macOS_15:
"macosx15.0"
"macosx15.5"

case .watchOS_11:
"watchsimulator"
Expand Down