From c943fecf340c2487dc7251f45d8593791b726e0d Mon Sep 17 00:00:00 2001 From: Lawrence Forooghian Date: Mon, 6 Nov 2023 15:37:29 -0300 Subject: [PATCH] Use iOS/tvOS 15.2 in CI This is the earliest version of iOS and tvOS now available in Xcode 13.2.1 (the version of Xcode that would have been the default on the macos-latest runner at the time of c2ed307). --- ...on-test-iOS14_4.yaml => integration-test-iOS15_2.yaml} | 4 ++-- ...-test-tvOS14_3.yaml => integration-test-tvOS15_2.yaml} | 4 ++-- fastlane/Fastfile | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) rename .github/workflows/{integration-test-iOS14_4.yaml => integration-test-iOS15_2.yaml} (97%) rename .github/workflows/{integration-test-tvOS14_3.yaml => integration-test-tvOS15_2.yaml} (97%) diff --git a/.github/workflows/integration-test-iOS14_4.yaml b/.github/workflows/integration-test-iOS15_2.yaml similarity index 97% rename from .github/workflows/integration-test-iOS14_4.yaml rename to .github/workflows/integration-test-iOS15_2.yaml index b055c5395..72e4a97e7 100644 --- a/.github/workflows/integration-test-iOS14_4.yaml +++ b/.github/workflows/integration-test-iOS15_2.yaml @@ -1,4 +1,4 @@ -name: "Integration Test: iOS 14.4" +name: "Integration Test: iOS 15.2" on: pull_request: @@ -50,7 +50,7 @@ jobs: make submodules bundle install make update_carthage_dependencies_ios - bundle exec fastlane test_iOS14_4 + bundle exec fastlane test_iOS15_2 - name: Check Static Analyzer Output id: analyzer-output diff --git a/.github/workflows/integration-test-tvOS14_3.yaml b/.github/workflows/integration-test-tvOS15_2.yaml similarity index 97% rename from .github/workflows/integration-test-tvOS14_3.yaml rename to .github/workflows/integration-test-tvOS15_2.yaml index e6d79e485..2a1ed9a42 100644 --- a/.github/workflows/integration-test-tvOS14_3.yaml +++ b/.github/workflows/integration-test-tvOS15_2.yaml @@ -1,4 +1,4 @@ -name: "Integration Test: tvOS 14.3" +name: "Integration Test: tvOS 15.2" on: pull_request: @@ -66,7 +66,7 @@ jobs: if: ${{ failure() && steps.analyzer-output.outcome == 'failure' }} uses: actions/upload-artifact@v2 with: - name: static-analyzer-reports-test_tvOS14_3 + name: static-analyzer-reports-test_tvOS15_2 path: ./derived_data/**/report-*.html # This is the script specified as the pod’s prepare_command in its Podspec. diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a7cc2f24b..84cbaaa85 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -2,22 +2,22 @@ default_platform(:ios) platform :ios do - lane :test_iOS14_4 do + lane :test_iOS15_2 do run_tests( scheme: "Ably-iOS-Tests", derived_data_path: "derived_data", - devices: ["iPhone 12 (14.4)"], + devices: ["iPhone 12 (15.2)"], test_without_building: false, xcargs: { ABLY_ENV: ENV['ABLY_ENV'], CLANG_ANALYZER_OUTPUT: 'plist-html' }, output_directory: "fastlane/test_output/sdk/test_iOS14_4" ) end - lane :test_tvOS14_3 do + lane :test_tvOS15_2 do run_tests( scheme: "Ably-tvOS-Tests", derived_data_path: "derived_data", - devices: ["Apple TV 4K (14.3)"], + devices: ["Apple TV 4K (15.2)"], xcargs: { ABLY_ENV: ENV['ABLY_ENV'], CLANG_ANALYZER_OUTPUT: 'plist-html' }, output_directory: "fastlane/test_output/sdk/test_tvOS14_3" )