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
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- main
schedule:
# Runs at 00:00 UTC every Monday to ensure that CI does not bitrot.
- cron: '0 0 * * 1'
pull_request:

jobs:
Expand All @@ -18,7 +21,7 @@ jobs:
ruby-version: '3.3.5'
bundler-cache: true
- 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: Download visionOS
run: |
sudo xcodebuild -runFirstLaunch
Expand Down Expand Up @@ -46,7 +49,7 @@ jobs:
ruby-version: '3.3.5'
bundler-cache: true
- 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: Download visionOS
if: matrix.platforms == 'visionOS_2'
run: |
Expand Down
10 changes: 5 additions & 5 deletions Scripts/build.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,20 @@ enum Platform: String, CaseIterable, 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,
.macCatalyst_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)"

case .visionOS_2:
"OS=2.0,name=Apple Vision Pro"
"OS=2.3,name=Apple Vision Pro"
}
}

Expand All @@ -58,7 +58,7 @@ enum Platform: String, CaseIterable, CustomStringConvertible {

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

case .watchOS_11:
"watchsimulator"
Expand Down