Skip to content

Commit 3932b3f

Browse files
committed
Make Xcode output prettier
1 parent acdc6ac commit 3932b3f

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/test.yml

+9-11
Original file line numberDiff line numberDiff line change
@@ -65,22 +65,20 @@ jobs:
6565
run: |
6666
yarn expo prebuild --platform ios
6767
68-
# Install CocoaPods dependencies for iOS
69-
- name: Install CocoaPods dependencies
70-
working-directory: apps/external-display-example/ios
71-
run: |
72-
pod install
68+
# Install xcpretty for better build output
69+
- name: Install xcpretty
70+
run: gem install xcpretty
7371

74-
# Build the iOS app using Xcode (Debug)
75-
- name: Build iOS App (Debug)
72+
# Build the iOS app using Xcode (with xcpretty)
73+
- name: Build iOS App (Debug) with xcpretty
7674
working-directory: apps/external-display-example/ios
7775
run: |
78-
xcodebuild \
79-
-workspace externaldisplayexample.xcworkspace \
80-
-scheme externaldisplayexample \
76+
set -o pipefail && xcodebuild \
77+
-workspace RNExternalDisplayExample.xcworkspace \
78+
-scheme RNExternalDisplayExample \
8179
-configuration Debug \
8280
-sdk iphonesimulator \
83-
-derivedDataPath build
81+
-derivedDataPath build | xcpretty --no-color
8482
8583
build-android:
8684
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)