mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +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
|
- name: Show build settings
|
||||||
run: |
|
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
|
- name: Build iOS app
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
cd ios && xcodebuild build \
|
cd ios && xcodebuild build \
|
||||||
|
-project VibeTunnel-iOS.xcodeproj \
|
||||||
-scheme VibeTunnel-iOS \
|
-scheme VibeTunnel-iOS \
|
||||||
-destination "platform=iOS,name=Any iOS Device" \
|
-destination "platform=iOS,name=Any iOS Device" \
|
||||||
-configuration Release \
|
-configuration Release \
|
||||||
|
|
|
||||||
3
.github/workflows/mac.yml
vendored
3
.github/workflows/mac.yml
vendored
|
|
@ -163,6 +163,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail && \
|
set -o pipefail && \
|
||||||
cd mac && xcodebuild build \
|
cd mac && xcodebuild build \
|
||||||
|
-project VibeTunnel-Mac.xcodeproj \
|
||||||
-scheme VibeTunnel-Mac \
|
-scheme VibeTunnel-Mac \
|
||||||
-configuration Debug \
|
-configuration Debug \
|
||||||
-destination "platform=macOS" \
|
-destination "platform=macOS" \
|
||||||
|
|
@ -180,6 +181,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail && \
|
set -o pipefail && \
|
||||||
cd mac && xcodebuild build \
|
cd mac && xcodebuild build \
|
||||||
|
-project VibeTunnel-Mac.xcodeproj \
|
||||||
-scheme VibeTunnel-Mac \
|
-scheme VibeTunnel-Mac \
|
||||||
-configuration Release \
|
-configuration Release \
|
||||||
-destination "platform=macOS" \
|
-destination "platform=macOS" \
|
||||||
|
|
@ -198,6 +200,7 @@ jobs:
|
||||||
# Use xcodebuild test for workspace testing
|
# Use xcodebuild test for workspace testing
|
||||||
set -o pipefail && \
|
set -o pipefail && \
|
||||||
cd mac && xcodebuild test \
|
cd mac && xcodebuild test \
|
||||||
|
-project VibeTunnel-Mac.xcodeproj \
|
||||||
-scheme VibeTunnel-Mac \
|
-scheme VibeTunnel-Mac \
|
||||||
-configuration Debug \
|
-configuration Debug \
|
||||||
-destination "platform=macOS" \
|
-destination "platform=macOS" \
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
import AppKit
|
||||||
import OSLog
|
import OSLog
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue