We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2897d68 commit 4b5e074Copy full SHA for 4b5e074
1 file changed
.github/workflows/build.yml
@@ -66,8 +66,11 @@ jobs:
66
shell: bash
67
run: |
68
set -euo pipefail
69
+ set -x
70
IOS_VER="${{ steps.pick_ios.outputs.ios_version }}"
71
72
+ xcodebuild -version
73
+
74
# 스킴 목록 수집 (가장 짧은 이름 선택)
75
SCHEMES_JSON=$(xcodebuild -list -json)
76
SCHEMES=()
@@ -87,8 +90,11 @@ jobs:
87
90
echo "Chosen scheme: $SCHEME"
88
91
89
92
# 예시: 시뮬레이터 대상으로 빌드/테스트 시 destination에서 OS 지정
93
+ set -o pipefail
94
xcodebuild \
95
-scheme "$SCHEME" \
96
-configuration Debug \
97
-destination "platform=iOS Simulator,OS=${IOS_VER},name=iPhone 14" \
- build
98
+ -showBuildTimingSummary \
99
+ build \
100
+ | cat
0 commit comments