Skip to content

Commit f741132

Browse files
committed
Simplify CI
1 parent 38a2890 commit f741132

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
platforms: [
3333
'iOS_17,watchOS_10',
3434
'macOS_14,tvOS_17',
35-
'macCatalyst_14',
3635
'visionOS_1'
3736
]
3837
fail-fast: false

Scripts/build.swift

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,11 @@ enum Platform: String, CaseIterable, CustomStringConvertible {
115115
return "macosx11.1"
116116
case .macOS_12:
117117
return "macosx12.3"
118-
case .macOS_13:
118+
case .macOS_13,
119+
.macCatalyst_13:
119120
return "macosx13.3"
120-
case .macOS_14:
121-
return "macosx14.5"
122-
case .macCatalyst_13:
123-
return "macosx13.3"
124-
case .macCatalyst_14:
121+
case .macOS_14,
122+
.macCatalyst_14:
125123
return "macosx14.5"
126124

127125
case .watchOS_6,

0 commit comments

Comments
 (0)