|
37 | 37 | with: |
38 | 38 | xcode-version: latest-stable |
39 | 39 | - name: Build |
40 | | - run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=macOS,name=Any Mac" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 40 | + run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=macOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
41 | 41 | - name: Unit Tests |
42 | 42 | run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "platform=macOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
43 | 43 |
|
|
52 | 52 | - name: Set Package to Swift 6.0 |
53 | 53 | run: swift package tools-version --set "6.0" |
54 | 54 | - name: Build |
55 | | - run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=macOS,name=Any Mac" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 55 | + run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=macOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
56 | 56 | - name: Unit Tests |
57 | 57 | run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "platform=macOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
58 | 58 |
|
|
65 | 65 | with: |
66 | 66 | xcode-version: latest-stable |
67 | 67 | - name: Build |
68 | | - run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=macOS,variant=Mac Catalyst,name=Any Mac" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 68 | + run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=macOS,variant=Mac Catalyst" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
69 | 69 | - name: Unit Tests |
70 | 70 | run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "platform=macOS,variant=Mac Catalyst" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
71 | 71 |
|
|
78 | 78 | with: |
79 | 79 | xcode-version: latest-stable |
80 | 80 | - name: Build |
81 | | - run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=iOS,name=Any iOS Device" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 81 | + run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=iOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
82 | 82 | - name: Prepare Simulator |
83 | 83 | run: xcodebuild -downloadPlatform iOS |
84 | 84 | - name: Prepare Destination Device Name |
@@ -116,7 +116,7 @@ jobs: |
116 | 116 | with: |
117 | 117 | xcode-version: latest-stable |
118 | 118 | - name: Build |
119 | | - run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=tvOS,name=Any tvOS Device" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 119 | + run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=tvOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
120 | 120 | - name: Prepare Simulator |
121 | 121 | run: xcodebuild -downloadPlatform tvOS |
122 | 122 | - name: Prepare Destination Device Name |
@@ -154,7 +154,7 @@ jobs: |
154 | 154 | with: |
155 | 155 | xcode-version: latest-stable |
156 | 156 | - name: Build |
157 | | - run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=watchOS,name=Any watchOS Device" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 157 | + run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "generic/platform=watchOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
158 | 158 | - name: Prepare Simulator |
159 | 159 | run: xcodebuild -downloadPlatform watchOS |
160 | 160 | - name: Prepare Destination Device Name |
@@ -195,20 +195,20 @@ jobs: |
195 | 195 | - name: Movie Timecode - Resolve Package Dependencies # needed because sometimes xcodebuild fails otherwise |
196 | 196 | run: xcodebuild -project "Examples/Movie Timecode/Movie Timecode.xcodeproj" -resolvePackageDependencies | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
197 | 197 | - name: Movie Timecode - Build (macOS) |
198 | | - run: xcodebuild build -project "Examples/Movie Timecode/Movie Timecode.xcodeproj" -scheme "Movie Timecode" -destination "generic/platform=macOS,name=Any Mac" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 198 | + run: xcodebuild build -project "Examples/Movie Timecode/Movie Timecode.xcodeproj" -scheme "Movie Timecode" -destination "generic/platform=macOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
199 | 199 | - name: Movie Timecode - Build (iOS) |
200 | | - run: xcodebuild build -project "Examples/Movie Timecode/Movie Timecode.xcodeproj" -scheme "Movie Timecode" -destination "generic/platform=iOS,name=Any iOS Device" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 200 | + run: xcodebuild build -project "Examples/Movie Timecode/Movie Timecode.xcodeproj" -scheme "Movie Timecode" -destination "generic/platform=iOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
201 | 201 |
|
202 | 202 | - name: Timecode UI - Resolve Package Dependencies # needed because sometimes xcodebuild fails otherwise |
203 | 203 | run: xcodebuild -project "Examples/Timecode UI/Timecode UI.xcodeproj" -resolvePackageDependencies | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
204 | 204 | - name: Timecode UI - Build (macOS) |
205 | | - run: xcodebuild build -project "Examples/Timecode UI/Timecode UI.xcodeproj" -scheme "Timecode UI" -destination "generic/platform=macOS,name=Any Mac" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 205 | + run: xcodebuild build -project "Examples/Timecode UI/Timecode UI.xcodeproj" -scheme "Timecode UI" -destination "generic/platform=macOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
206 | 206 | - name: Timecode UI - Build (iOS) |
207 | | - run: xcodebuild build -project "Examples/Timecode UI/Timecode UI.xcodeproj" -scheme "Timecode UI" -destination "generic/platform=iOS,name=Any iOS Device" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 207 | + run: xcodebuild build -project "Examples/Timecode UI/Timecode UI.xcodeproj" -scheme "Timecode UI" -destination "generic/platform=iOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
208 | 208 |
|
209 | 209 | - name: Timecode Math - Resolve Package Dependencies # needed because sometimes xcodebuild fails otherwise |
210 | 210 | run: xcodebuild -project "Examples/Timecode Math/Timecode Math.xcodeproj" -resolvePackageDependencies | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
211 | 211 | - name: Timecode Math - Build (macOS) |
212 | | - run: xcodebuild build -project "Examples/Timecode Math/Timecode Math.xcodeproj" -scheme "Timecode Math" -destination "generic/platform=macOS,name=Any Mac" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 212 | + run: xcodebuild build -project "Examples/Timecode Math/Timecode Math.xcodeproj" -scheme "Timecode Math" -destination "generic/platform=macOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
213 | 213 | - name: Timecode Math - Build (iOS) |
214 | | - run: xcodebuild build -project "Examples/Timecode Math/Timecode Math.xcodeproj" -scheme "Timecode Math" -destination "generic/platform=iOS,name=Any iOS Device" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
| 214 | + run: xcodebuild build -project "Examples/Timecode Math/Timecode Math.xcodeproj" -scheme "Timecode Math" -destination "generic/platform=iOS" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]} |
0 commit comments