Skip to content

Commit

Permalink
feat: only show errors during build
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurgeron committed Nov 13, 2023
1 parent 7c02787 commit 8ae8d4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-example-ios.yml
Expand Up @@ -70,7 +70,6 @@ jobs:
- name: Install xcpretty
run: gem install xcpretty
working-directory: IapExample/ios

- name: Build App
run: "set -o pipefail && xcodebuild \
CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ \
Expand All @@ -79,7 +78,8 @@ jobs:
-scheme IapExample \
-sdk iphonesimulator \
-configuration Debug \
-quiet \
-destination 'platform=iOS Simulator,name=iPhone 11 Pro' \
build \
CODE_SIGNING_ALLOWED=NO | xcpretty"
CODE_SIGNING_ALLOWED=NO | xcpretty | grep -v warning"
working-directory: IapExample/ios

0 comments on commit 8ae8d4d

Please sign in to comment.