Skip to content

Infra: fix CI & drop iOS 13-14 testing #455

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jun 10, 2025
Merged
Show file tree
Hide file tree
Changes from 8 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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ jobs:
os: macos-14
xcode: 15.4
- platform: [iOS, 18]
runtime: iOS 18.0
runtime: iOS 18.2
os: macos-14
xcode: 16.0
xcode: 16.2

- platform: [tvOS, 13]
runtime: tvOS 13.4
Expand All @@ -97,9 +97,9 @@ jobs:
os: macos-14
xcode: 15.4
- platform: [tvOS, 18]
runtime: tvOS 18.0
runtime: tvOS 18.2
os: macos-14
xcode: 16.0
xcode: 16.2

- platform: [watchOS, 8]
runtime: watchOS 8.5
Expand All @@ -115,9 +115,9 @@ jobs:
os: macos-14
xcode: 15.4
- platform: [watchOS, 11]
runtime: watchOS 11.0
runtime: watchOS 11.2
os: macos-14
xcode: 16.0
xcode: 16.2

- platform: [macOS, 12]
runtime: macOS 12
Expand All @@ -137,9 +137,9 @@ jobs:
os: macos-14
xcode: 15.4
- platform: [visionOS, 2]
runtime: visionOS 2.0
os: macos-14
xcode: 16.0
runtime: visionOS 2.5
os: macos-15
xcode: 16.4
steps:
- name: Git Checkout
uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ devices = {
14 => ["iPhone 12 (14.5)", "iPad Pro (9.7-inch) (14.5)"],
15 => ["iPhone SE (3rd generation) (15.5)", "iPad Air (5th generation) (15.5)",],
16 => ["iPhone 14 (16.4)", "iPad Pro (11-inch) (4th generation) (16.4)"],
17 => ["iPhone 14 (17.5)", "iPad Pro (11-inch) (4th generation) (17.5)"],
18 => ["iPhone 15 (18.0)", "iPad Pro 11-inch (M4) (18.0)"],
17 => ["iPhone 15 (17.5)", "iPad Pro 11-inch (M4) (17.5)"],
18 => ["iPhone 16 (18.2)", "iPad Pro 11-inch (M4) (18.2)"],
},
"tvos" => {
13 => ["Apple TV (13.4)"],
14 => ["Apple TV (14.5)"],
15 => ["Apple TV (15.4)"],
16 => ["Apple TV (16.4)"],
17 => ["Apple TV (17.5)"],
18 => ["Apple TV (18.0)"],
18 => ["Apple TV (18.2)"],
},
"watchos" => {
8 => ["Apple Watch Series 7 (45mm) (8.5)"],
9 => ["Apple Watch Series 8 (45mm) (9.4)"],
10 => ["Apple Watch Series 9 (45mm) (10.5)"],
11 => ["Apple Watch Series 9 (45mm) (11.0)"],
11 => ["Apple Watch Series 10 (42mm) (11.2)"],
},
"visionos" => {
1 => ["Apple Vision Pro (1.2)"],
2 => ["Apple Vision Pro (2.0)"],
2 => ["Apple Vision Pro (2.5)"],
},
}

Expand Down
Loading