From 527a88a04a7aa68047c2024b103b2e9a86f973ea Mon Sep 17 00:00:00 2001 From: Muhammad Umer Date: Wed, 16 Aug 2023 10:31:51 +0100 Subject: [PATCH] chore: update xcode version --- .github/workflows/edXTestSuit.yml | 29 ++++++++--------------------- build.gradle | 2 +- 2 files changed, 9 insertions(+), 22 deletions(-) diff --git a/.github/workflows/edXTestSuit.yml b/.github/workflows/edXTestSuit.yml index fdbd8eb9fe..c88a182751 100644 --- a/.github/workflows/edXTestSuit.yml +++ b/.github/workflows/edXTestSuit.yml @@ -9,35 +9,22 @@ on: jobs: xcode-ios: name: "${{ matrix.env.name }}" - runs-on: macos-11 + runs-on: macos-12 strategy: fail-fast: false matrix: env: - - name: "Test iOS 15" - runtime: "iOS-15-2" - device: "iPhone 8" + - name: "Test iOS 16" + runtime: "iOS-16" + device: "iPhone 14 Pro" task: "testLTRCurrentOS" - - name: "Test RTL iOS 15.2" - runtime: "iOS-15-2" - device: "iPhone 8" + - name: "Test RTL iOS 16" + runtime: "iOS-16" + device: "iPhone 14 Pro" task: "testRTLCurrentOS" - - name: "Test iOS 14.4" - runtime: "iOS-14-4" - device: "iPhone 8" - task: "testLTRPreviousOS" - - name: "Test RTL iOS 14.4" - runtime: "iOS-14-4" - device: "iPhone 8" - task: "testRTLPreviousOS" steps: - name: Git checkout - uses: actions/checkout@v2 - - name: "Select Xcode 13.2.1" - run: | - sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes - sudo ln -s /Applications/Xcode_12.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 14.4.simruntime - sudo xcode-select -s /Applications/Xcode_13.2.1.app + uses: actions/checkout@v2 - name: Run tests if: always() run: | diff --git a/build.gradle b/build.gradle index 5d8fa3fff3..c5a26d67ab 100644 --- a/build.gradle +++ b/build.gradle @@ -296,7 +296,7 @@ def RTLSchemeForScheme(scheme) { return scheme + '-RTL' } -def operatingSystems = ["currentOS": "16.4", "previousOS": "15.5"] +def operatingSystems = ["currentOS": "16", "previousOS": "15"] def directions = ["LTR": scheme, "RTL": RTLSchemeForScheme(scheme)] def commands = ["test" : ["record" : false], "recordSnapshots": ["record" : true]]