From fb62cae9c6bca2ce2a2f735398a37ca9f26ea32e Mon Sep 17 00:00:00 2001 From: Caio Zullo Date: Thu, 28 Sep 2023 14:39:05 +0300 Subject: [PATCH] Update CI to run with iOS 17.0.1 / Xcode 15.0.1 --- .github/workflows/CI-iOS.yml | 8 ++++---- .github/workflows/CI-macOS.yml | 2 +- .github/workflows/Deploy.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI-iOS.yml b/.github/workflows/CI-iOS.yml index 5f7d5f0b..d919aefe 100644 --- a/.github/workflows/CI-iOS.yml +++ b/.github/workflows/CI-iOS.yml @@ -12,9 +12,9 @@ jobs: # This workflow contains a single job called "build-and-test" build-and-test: # The type of runner that the job will run on - runs-on: macos-13 + runs-on: macos-13-xlarge - timeout-minutes: 10 + timeout-minutes: 20 # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -22,10 +22,10 @@ jobs: - uses: actions/checkout@v2 - name: Select Xcode - run: sudo xcode-select -switch /Applications/Xcode_14.3.app + run: sudo xcode-select -switch /Applications/Xcode_15.0.1.app - name: Xcode version 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 14,OS=16.4" ONLY_ACTIVE_ARCH=YES + 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.1" ONLY_ACTIVE_ARCH=YES diff --git a/.github/workflows/CI-macOS.yml b/.github/workflows/CI-macOS.yml index c0761161..6aa62e17 100644 --- a/.github/workflows/CI-macOS.yml +++ b/.github/workflows/CI-macOS.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: Select Xcode - run: sudo xcode-select -switch /Applications/Xcode_14.3.app + run: sudo xcode-select -switch /Applications/Xcode_15.0.1.app - name: Xcode version run: /usr/bin/xcodebuild -version diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index f6f5d3a3..54207166 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -36,7 +36,7 @@ jobs: security set-key-partition-list -S apple-tool:,apple: -s -k "" ~/Library/Keychains/build.keychain - name: Select Xcode - run: sudo xcode-select -switch /Applications/Xcode_14.3.app + run: sudo xcode-select -switch /Applications/Xcode_15.0.1.app - name: Xcode version run: /usr/bin/xcodebuild -version