File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff 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 \
76+ set -o pipefail && xcodebuild \
7977 -workspace externaldisplayexample.xcworkspace \
8078 -scheme externaldisplayexample \
8179 -configuration Debug \
8280 -sdk iphonesimulator \
83- -derivedDataPath build
81+ -derivedDataPath build | xcpretty --no-color
8482
8583 build-android :
8684 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments