From 9bc852e6d0a1452862ef989bab4b6246fa1fcd2d Mon Sep 17 00:00:00 2001 From: Arafat Zahan Date: Sun, 29 May 2022 07:45:41 +0600 Subject: [PATCH] fix: add -quiet flag to xcodebuild and increase workflow timeout. --- .github/workflows/ios.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 2214a7e..e9d80f3 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -51,7 +51,7 @@ jobs: ios: name: IOS Build runs-on: macOS-latest - timeout-minutes: 20 + timeout-minutes: 30 defaults: run: working-directory: template @@ -82,4 +82,4 @@ jobs: - name: Install Pods run: cd ios && pod install --repo-update && cd .. - name: IOS Release Build - run: cd ios && xcodebuild -workspace HelloWorld.xcworkspace -configuration Release -scheme HelloWorld -destination 'platform=iOS Simulator,name=iPhone 13' + run: cd ios && xcodebuild -workspace HelloWorld.xcworkspace -configuration Release -scheme HelloWorld -destination 'platform=iOS Simulator,name=iPhone 13' -quiet