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
20 changes: 10 additions & 10 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
submodules: true

# This step can be removed once the runners' default version of Xcode is 16.3 or above
# This step can be removed once the runners' default version of Xcode is 16.4 or above
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.3
xcode-version: 16.4

# We use caching for Mint because at the time of writing SwiftLint took about 5 minutes to build in CI, which is unacceptably slow.
# https://github.com/actions/cache/blob/40c3b67b2955d93d83b27ed164edd0756bc24049/examples.md#swift---mint
Expand All @@ -49,10 +49,10 @@ jobs:
# with:
# submodules: true
#
# # This step can be removed once the runners' default version of Xcode is 16.3 or above
# # This step can be removed once the runners' default version of Xcode is 16.4 or above
# - uses: maxim-lobanov/setup-xcode@v1
# with:
# xcode-version: 16.3
# xcode-version: 16.4
#
# - name: Spec coverage
# run: swift run BuildTool spec-coverage --spec-commit-sha 2f88b1b
Expand All @@ -68,10 +68,10 @@ jobs:
with:
submodules: true

# This step can be removed once the runners' default version of Xcode is 16.3 or above
# This step can be removed once the runners' default version of Xcode is 16.4 or above
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.3
xcode-version: 16.4

- id: generation-step
run: swift run BuildTool generate-matrices >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -149,10 +149,10 @@ jobs:
with:
submodules: true

# This step can be removed once the runners' default version of Xcode is 16.3 or above
# This step can be removed once the runners' default version of Xcode is 16.4 or above
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.3
xcode-version: 16.4

- run: swift run BuildTool generate-code-coverage --result-bundle-path CodeCoverage.xcresult

Expand Down Expand Up @@ -226,10 +226,10 @@ jobs:
with:
submodules: true

# This step can be removed once the runners' default version of Xcode is 16.3 or above
# This step can be removed once the runners' default version of Xcode is 16.4 or above
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.3
xcode-version: 16.4

# Dry run upload-action to get base-path url
- name: Dry-Run Upload (to get url)
Expand Down
2 changes: 1 addition & 1 deletion Sources/BuildTool/BuildTool.swift
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ struct GenerateMatrices: ParsableCommand {
)

mutating func run() throws {
let tooling = ["16.3"].map { xcodeVersion in
let tooling = ["16.4"].map { xcodeVersion in
[
"xcodeVersion": xcodeVersion,
]
Expand Down
4 changes: 2 additions & 2 deletions Sources/BuildTool/Platform.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ enum Platform: String, CaseIterable {
case .macOS:
.fixed(platform: "macOS")
case .iOS:
.lookup(destinationPredicate: .init(runtime: "iOS-18-4", deviceType: "iPhone-16"))
.lookup(destinationPredicate: .init(runtime: "iOS-26-2", deviceType: "iPhone-16"))
case .tvOS:
.lookup(destinationPredicate: .init(runtime: "tvOS-18-4", deviceType: "Apple-TV-4K-3rd-generation-4K"))
.lookup(destinationPredicate: .init(runtime: "tvOS-26-2", deviceType: "Apple-TV-4K-3rd-generation-4K"))
}
}

Expand Down
Loading