mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-24 14:47:39 +00:00
fix: Add -project flag to xcodebuild commands in CI
This commit is contained in:
parent
7d447cf542
commit
4ecb9ebb8c
3 changed files with 6 additions and 1 deletions
3
.github/workflows/ios.yml
vendored
3
.github/workflows/ios.yml
vendored
|
|
@ -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 \
|
||||
|
|
|
|||
3
.github/workflows/mac.yml
vendored
3
.github/workflows/mac.yml
vendored
|
|
@ -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" \
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
import AppKit
|
||||
import OSLog
|
||||
import SwiftUI
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue