From 79e20910308d8d39ae04350d34ad975b27686738 Mon Sep 17 00:00:00 2001 From: Caio Zullo Date: Thu, 28 Sep 2023 16:20:34 +0300 Subject: [PATCH] Increase CI timeout to handle Xcode 15.0 slowness --- .github/workflows/CI-iOS.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI-iOS.yml b/.github/workflows/CI-iOS.yml index cec21cd1..a7674948 100644 --- a/.github/workflows/CI-iOS.yml +++ b/.github/workflows/CI-iOS.yml @@ -14,7 +14,7 @@ jobs: # The type of runner that the job will run on runs-on: macos-13 - timeout-minutes: 10 + timeout-minutes: 20 # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -28,4 +28,4 @@ jobs: run: /usr/bin/xcodebuild -version - name: Build and Test - run: xcodebuild clean build test -workspace EssentialApp/EssentialApp.xcworkspace -scheme "CI_iOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 15 Pro,OS=17.0" ONLY_ACTIVE_ARCH=YES + run: xcodebuild test -workspace EssentialApp/EssentialApp.xcworkspace -scheme "CI_iOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 15 Pro,OS=17.0" ONLY_ACTIVE_ARCH=YES