Skip to content

CI: run tests on 2026 platforms #474

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

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
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
48 changes: 28 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ jobs:
runtime: iOS 18.5
os: macos-15
xcode: 16.4
# - platform: [iOS, 26]
# runtime: iOS 26.0
# os: macos-15
# xcode: 26.0
- platform: [iOS, 26]
runtime: iOS 26.0-beta1
os: macos-15
xcode: 26.0
install: true

- platform: [tvOS, 15]
runtime: tvOS 15.4
Expand All @@ -83,10 +84,11 @@ jobs:
runtime: tvOS 18.5
os: macos-15
xcode: 16.4
# - platform: [tvOS, 26]
# runtime: tvOS 26.0
# os: macos-15
# xcode: 26.0
- platform: [tvOS, 26]
runtime: tvOS 26.0-beta1
os: macos-15
xcode: 26.0
install: true

- platform: [watchOS, 8]
runtime: watchOS 8.5
Expand All @@ -107,18 +109,19 @@ jobs:
runtime: watchOS 11.5
os: macos-15
xcode: 16.4
# - platform: [watchOS, 26]
# runtime: watchOS 26.0
# os: macos-15
# xcode: 26.0
- platform: [watchOS, 26]
runtime: watchOS 26.0-beta1
os: macos-15
xcode: 26.0
install: true

- platform: [macOS, 15]
runtime: macOS 15
os: macos-15
xcode: 16.4
# - platform: [macOS, 26]
# runtime: macOS 26.0
# os: macos-15
# os: macos-26
# xcode: 26.0

- platform: [visionOS, 1]
Expand All @@ -130,24 +133,26 @@ jobs:
runtime: visionOS 2.5
os: macos-15
xcode: 16.4
# - platform: [visionOS, 26]
# runtime: visionOS 26.0
# os: macos-15
# xcode: 26.0
- platform: [visionOS, 26]
runtime: visionOS 26.0-beta1
os: macos-15
xcode: 26.0
install: true
steps:
- name: Git Checkout
uses: actions/checkout@v4

- name: Set environment variables
run: echo "SKIP_SLOW_FASTLANE_WARNING=1" >> $GITHUB_ENV

- name: Select Xcode version
run: sudo xcodes select ${{ matrix.xcode }}

- if: ${{ matrix.install }}
name: "[Debug] List Available Installable Runtimes"
run: xcodes runtimes --include-betas

- if: ${{ matrix.install }}
name: Select Xcode for installing runtimes
run: sudo xcodes select 16.4

- if: ${{ matrix.install }}
name: Install Required Runtime (${{ matrix.runtime }})
uses: nick-fields/retry@v3
Expand All @@ -156,6 +161,9 @@ jobs:
max_attempts: 3
command: sudo xcodes runtimes install '${{ matrix.runtime }}'

- name: Select Xcode version
run: sudo xcodes select ${{ matrix.xcode }}

- name: "[Debug] List Available Runtimes, Simulators, and Destinations"
run: |
xcrun simctl list
Expand Down
4 changes: 4 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,26 @@ devices = {
16 => ["iPhone 14 (16.4)", "iPad Pro (11-inch) (4th generation) (16.4)"],
17 => ["iPhone 15 (17.5)", "iPad Pro 11-inch (M4) (17.5)"],
18 => ["iPhone 16 (18.2)", "iPad Pro 11-inch (M4) (18.2)"],
26 => ["iPhone 16 (26.0)", "iPad Pro 11-inch (M4) (26.0)"],
},
"tvos" => {
15 => ["Apple TV (15.4)"],
16 => ["Apple TV (16.4)"],
17 => ["Apple TV (17.5)"],
18 => ["Apple TV (18.2)"],
26 => ["Apple TV (26.0)"],
},
"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 10 (42mm) (11.2)"],
26 => ["Apple Watch Series 10 (42mm) (26.0)"],
},
"visionos" => {
1 => ["Apple Vision Pro (1.2)"],
2 => ["Apple Vision Pro (2.5)"],
26 => ["Apple Vision Pro (26.0)"],
},
}

Expand Down
Loading