From 1b1fbf47a3b12a5ad2fd3fb3951b03dbfece5af9 Mon Sep 17 00:00:00 2001 From: Caio Zullo Date: Mon, 1 May 2023 10:33:18 +0200 Subject: [PATCH] Update CI to run with macOS 13 / Xcode 14.3 / iOS 16.4 --- .github/workflows/CI-iOS.yml | 6 +++--- .github/workflows/CI-macOS.yml | 4 ++-- .github/workflows/Deploy.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI-iOS.yml b/.github/workflows/CI-iOS.yml index d78bd877..5f7d5f0b 100644 --- a/.github/workflows/CI-iOS.yml +++ b/.github/workflows/CI-iOS.yml @@ -12,7 +12,7 @@ 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-12 + runs-on: macos-13 timeout-minutes: 10 @@ -22,10 +22,10 @@ jobs: - uses: actions/checkout@v2 - name: Select Xcode - run: sudo xcode-select -switch /Applications/Xcode_14.1.app + run: sudo xcode-select -switch /Applications/Xcode_14.3.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.1" 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 14,OS=16.4" ONLY_ACTIVE_ARCH=YES diff --git a/.github/workflows/CI-macOS.yml b/.github/workflows/CI-macOS.yml index 900eab4e..c0761161 100644 --- a/.github/workflows/CI-macOS.yml +++ b/.github/workflows/CI-macOS.yml @@ -12,7 +12,7 @@ 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-12 + runs-on: macos-13 timeout-minutes: 10 @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: Select Xcode - run: sudo xcode-select -switch /Applications/Xcode_14.1.app + run: sudo xcode-select -switch /Applications/Xcode_14.3.app - name: Xcode version run: /usr/bin/xcodebuild -version diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index 70d9bb4d..f6f5d3a3 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -12,7 +12,7 @@ jobs: # This workflow contains a single job called "build-and-deploy" build-and-deploy: # The type of runner that the job will run on - runs-on: macos-12 + runs-on: macos-13 # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -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.1.app + run: sudo xcode-select -switch /Applications/Xcode_14.3.app - name: Xcode version run: /usr/bin/xcodebuild -version