Skip to content

Commit

Permalink
Increase CI timeout because of Xcode 15.0 known slowness issues.
Browse files Browse the repository at this point in the history
From Xcode 15.0 release notes (https://developer.apple.com/documentation/xcode-release-notes/xcode-15-release-notes#Known-Issues):

- "Executing Unit/UI tests from Xcode on the iOS Simulator takes an extended time to launch on first run of the suite. (115187363) (110330776) (FB12237092)"
  • Loading branch information
caiozullo committed Sep 29, 2023
1 parent 7fbe19e commit 5ea99b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI-iOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# The type of runner that the job will run on
runs-on: macos-13

timeout-minutes: 10
timeout-minutes: 25

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -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

0 comments on commit 5ea99b0

Please sign in to comment.