Skip to content

Commit c81c053

Browse files
author
Rob Amos
committed
Go with build tests for non-macOS platforms on Xcode 26, sigh.
1 parent c96298c commit c81c053

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/ios-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,9 @@ jobs:
4040
uses: actions/checkout@v4
4141
- name: Build and Test
4242
run: |
43-
xcrun xcodebuild -list -workspace .
4443
set -o pipefail && \
4544
NSUnbufferedIO=YES \
46-
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=iOS Simulator,name=iPhone 16e" \
45+
xcrun xcodebuild build -workspace . -scheme Vexil -skipMacroValidation -destination "platform=iOS Simulator,name=iPhone 16e" \
4746
| xcbeautify --renderer github-actions
4847
4948
build-ios:

.github/workflows/tvos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
set -o pipefail && \
4444
NSUnbufferedIO=YES \
45-
xcrun xcodebuild test -workspace . -scheme Vexil-Package -skipMacroValidation -destination "platform=tvOS Simulator,name=Apple TV 4K (3rd generation)" \
45+
xcrun xcodebuild build -workspace . -scheme Vexil-Package -skipMacroValidation -destination "platform=tvOS Simulator,name=Apple TV 4K (3rd generation)" \
4646
| xcbeautify --renderer github-actions
4747
4848
build-tvos:

.github/workflows/visionos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
set -o pipefail && \
4444
NSUnbufferedIO=YES \
45-
xcrun xcodebuild test -workspace . -scheme Vexil-Package -skipMacroValidation -destination "platform=visionOS Simulator,name=Apple Vision Pro,os=2.5" \
45+
xcrun xcodebuild build -workspace . -scheme Vexil-Package -skipMacroValidation -destination "platform=visionOS Simulator,name=Apple Vision Pro,os=2.5" \
4646
| xcbeautify --renderer github-actions
4747
4848
build-visionos:

.github/workflows/watchos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
set -o pipefail && \
4444
NSUnbufferedIO=YES \
45-
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=watchOS Simulator,name=Apple Watch Series 10 (46mm)" \
45+
xcrun xcodebuild build -workspace . -scheme Vexil -skipMacroValidation -destination "platform=watchOS Simulator,name=Apple Watch Series 10 (46mm)" \
4646
| xcbeautify --renderer github-actions
4747
4848
build-watchos:

0 commit comments

Comments
 (0)