File tree 1 file changed +9
-11
lines changed
1 file changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -65,22 +65,20 @@ jobs:
65
65
run : |
66
66
yarn expo prebuild --platform ios
67
67
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
73
71
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
76
74
working-directory : apps/external-display-example/ios
77
75
run : |
78
- xcodebuild \
79
- -workspace externaldisplayexample .xcworkspace \
80
- -scheme externaldisplayexample \
76
+ set -o pipefail && xcodebuild \
77
+ -workspace RNExternalDisplayExample .xcworkspace \
78
+ -scheme RNExternalDisplayExample \
81
79
-configuration Debug \
82
80
-sdk iphonesimulator \
83
- -derivedDataPath build
81
+ -derivedDataPath build | xcpretty --no-color
84
82
85
83
build-android :
86
84
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments