Skip to content

Commit 40e88c4

Browse files
committed
Updated GitHub CI
1 parent 95ab1b5 commit 40e88c4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ jobs:
7070
- uses: maxim-lobanov/setup-xcode@v1
7171
with:
7272
xcode-version: latest-stable # Sometimes a newer version of Xcode is available but isn't yet made default
73-
- name: iPhone 12 Simulator - Build
73+
- name: Build
7474
run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "SwiftASCII-CI" -destination "generic/platform=iOS Simulator,name=Any iOS Device" | xcpretty && exit ${PIPESTATUS[0]}
75-
- name: iPhone 12 Simulator - Unit Tests
75+
- name: Unit Tests
7676
run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "SwiftASCII-CI" -destination "platform=iOS Simulator,name=iPhone 15" | xcpretty && exit ${PIPESTATUS[0]}
7777

7878
tvOS:
@@ -83,9 +83,9 @@ jobs:
8383
- uses: maxim-lobanov/setup-xcode@v1
8484
with:
8585
xcode-version: latest-stable # Sometimes a newer version of Xcode is available but isn't yet made default
86-
- name: Apple TV - Build
86+
- name: Build
8787
run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "SwiftASCII-CI" -destination "generic/platform=tvOS Simulator,name=Any tvOS Simulator Device" | xcpretty && exit ${PIPESTATUS[0]}
88-
- name: Apple TV - Unit Tests
88+
- name: Unit Tests
8989
run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "SwiftASCII-CI" -destination "platform=tvOS Simulator,name=Apple TV 4K (3rd generation)" | xcpretty && exit ${PIPESTATUS[0]}
9090

9191
# NOTES: Xcode 15 seems to have a transient bug where compiling for watchOS Simulator fails, so we have to compile for watchOS Device instead.
@@ -98,9 +98,9 @@ jobs:
9898
- uses: maxim-lobanov/setup-xcode@v1
9999
with:
100100
xcode-version: latest-stable # Sometimes a newer version of Xcode is available but isn't yet made default
101-
- name: Apple Watch - Build
101+
- name: Build
102102
run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "SwiftASCII-CI" -destination "generic/platform=watchOS,name=Any watchOS Device" | xcpretty && exit ${PIPESTATUS[0]}
103-
- name: Apple Watch - Unit Tests
103+
- name: Unit Tests
104104
run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "SwiftASCII-CI" -destination "platform=watchOS Simulator,name=Apple Watch Series 10 (46mm)" | xcpretty && exit ${PIPESTATUS[0]}
105105

106106

0 commit comments

Comments
 (0)