Skip to content

Commit

Permalink
Use macOS 15 in CI (#326)
Browse files Browse the repository at this point in the history
* Use macOS 15 in CI

* Update simulator names
  • Loading branch information
dfed authored Oct 29, 2024
1 parent 6bdf581 commit 23c090d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
xcode-build-16:
name: Xcode 16 Build
runs-on: macOS-14
runs-on: macOS-15
strategy:
matrix:
platforms: [
Expand All @@ -37,7 +37,7 @@ jobs:
run: Scripts/upload-coverage-reports.sh ${{ matrix.platforms }}
pod-lint:
name: Pod Lint
runs-on: macOS-14
runs-on: macOS-15
timeout-minutes: 30
steps:
- name: Checkout Repo
Expand All @@ -50,7 +50,7 @@ jobs:
run: bundle exec pod lib lint --verbose --fail-fast --swift-version=6.0
carthage:
name: Carthage
runs-on: macOS-14
runs-on: macOS-15
timeout-minutes: 30
steps:
- name: Checkout Repo
Expand All @@ -64,8 +64,8 @@ jobs:
- name: Build Framework
run: carthage build --verbose --no-skip-current --use-xcframeworks
spm-16:
name: SPM Build macOS 14
runs-on: macOS-14
name: SPM Build macOS 15
runs-on: macOS-15
strategy:
matrix:
platforms: [
Expand Down
4 changes: 2 additions & 2 deletions Scripts/build.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ enum Platform: String, CustomStringConvertible {
var destination: String {
switch self {
case .iOS_18:
"platform=iOS Simulator,OS=18.0,name=iPad Pro (12.9-inch) (6th generation)"
"platform=iOS Simulator,OS=18.0,name=iPad (10th generation)"

case .tvOS_18:
"platform=tvOS Simulator,OS=18.0,name=Apple TV"
Expand All @@ -38,7 +38,7 @@ enum Platform: String, CustomStringConvertible {
"platform=OS X"

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

Expand Down

0 comments on commit 23c090d

Please sign in to comment.