Skip to content

Commit 4b5e074

Browse files
committed
test: ci v7
1 parent 2897d68 commit 4b5e074

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,11 @@ jobs:
6666
shell: bash
6767
run: |
6868
set -euo pipefail
69+
set -x
6970
IOS_VER="${{ steps.pick_ios.outputs.ios_version }}"
7071
72+
xcodebuild -version
73+
7174
# 스킴 목록 수집 (가장 짧은 이름 선택)
7275
SCHEMES_JSON=$(xcodebuild -list -json)
7376
SCHEMES=()
@@ -87,8 +90,11 @@ jobs:
8790
echo "Chosen scheme: $SCHEME"
8891
8992
# 예시: 시뮬레이터 대상으로 빌드/테스트 시 destination에서 OS 지정
93+
set -o pipefail
9094
xcodebuild \
9195
-scheme "$SCHEME" \
9296
-configuration Debug \
9397
-destination "platform=iOS Simulator,OS=${IOS_VER},name=iPhone 14" \
94-
build
98+
-showBuildTimingSummary \
99+
build \
100+
| cat

0 commit comments

Comments
 (0)