Skip to content

Commit

Permalink
Make Xcode output prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
hellostu committed Oct 15, 2024
1 parent acdc6ac commit 6534615
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,20 @@ jobs:
run: |
yarn expo prebuild --platform ios
# Install CocoaPods dependencies for iOS
- name: Install CocoaPods dependencies
working-directory: apps/external-display-example/ios
run: |
pod install
# Install xcpretty for better build output
- name: Install xcpretty
run: gem install xcpretty

# Build the iOS app using Xcode (Debug)
- name: Build iOS App (Debug)
# Build the iOS app using Xcode (with xcpretty)
- name: Build iOS App (Debug) with xcpretty
working-directory: apps/external-display-example/ios
run: |
xcodebuild \
set -o pipefail && xcodebuild \
-workspace externaldisplayexample.xcworkspace \
-scheme externaldisplayexample \
-scheme external-display-example \
-configuration Debug \
-sdk iphonesimulator \
-derivedDataPath build
-derivedDataPath build | xcpretty --no-color
build-android:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6534615

Please sign in to comment.