fix: Add -project flag to xcodebuild commands in CI

This commit is contained in:
Peter Steinberger 2025-06-22 15:02:46 +02:00
parent 7d447cf542
commit 4ecb9ebb8c
3 changed files with 6 additions and 1 deletions

View file

@ -137,12 +137,13 @@ jobs:
- name: Show build settings
run: |
cd ios && xcodebuild -showBuildSettings -scheme VibeTunnel-iOS -destination "platform=iOS,name=Any iOS Device"
cd ios && xcodebuild -showBuildSettings -project VibeTunnel-iOS.xcodeproj -scheme VibeTunnel-iOS -destination "platform=iOS,name=Any iOS Device"
- name: Build iOS app
run: |
set -o pipefail
cd ios && xcodebuild build \
-project VibeTunnel-iOS.xcodeproj \
-scheme VibeTunnel-iOS \
-destination "platform=iOS,name=Any iOS Device" \
-configuration Release \

View file

@ -163,6 +163,7 @@ jobs:
run: |
set -o pipefail && \
cd mac && xcodebuild build \
-project VibeTunnel-Mac.xcodeproj \
-scheme VibeTunnel-Mac \
-configuration Debug \
-destination "platform=macOS" \
@ -180,6 +181,7 @@ jobs:
run: |
set -o pipefail && \
cd mac && xcodebuild build \
-project VibeTunnel-Mac.xcodeproj \
-scheme VibeTunnel-Mac \
-configuration Release \
-destination "platform=macOS" \
@ -198,6 +200,7 @@ jobs:
# Use xcodebuild test for workspace testing
set -o pipefail && \
cd mac && xcodebuild test \
-project VibeTunnel-Mac.xcodeproj \
-scheme VibeTunnel-Mac \
-configuration Debug \
-destination "platform=macOS" \

View file

@ -1,3 +1,4 @@
import AppKit
import OSLog
import SwiftUI