diff --git a/.github/workflows/ci-example-ios.yml b/.github/workflows/ci-example-ios.yml index 033a38f57..f68d8906f 100644 --- a/.github/workflows/ci-example-ios.yml +++ b/.github/workflows/ci-example-ios.yml @@ -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++ \ @@ -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