From 7fa6c5d5596a1b40be6504a3c314d0561b6c9b93 Mon Sep 17 00:00:00 2001 From: Marat Al Date: Sat, 8 Jul 2023 18:38:31 +0200 Subject: [PATCH] Updated workflows for Xcode 14.3 --- ...on-test-iOS16_2.yaml => integration-test-iOS16_4.yaml} | 8 ++++---- ...-test-tvOS16_1.yaml => integration-test-tvOS16_4.yaml} | 8 ++++---- fastlane/Fastfile | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) rename .github/workflows/{integration-test-iOS16_2.yaml => integration-test-iOS16_4.yaml} (95%) rename .github/workflows/{integration-test-tvOS16_1.yaml => integration-test-tvOS16_4.yaml} (95%) diff --git a/.github/workflows/integration-test-iOS16_2.yaml b/.github/workflows/integration-test-iOS16_4.yaml similarity index 95% rename from .github/workflows/integration-test-iOS16_2.yaml rename to .github/workflows/integration-test-iOS16_4.yaml index 73ce8d31f..2c0a668be 100644 --- a/.github/workflows/integration-test-iOS16_2.yaml +++ b/.github/workflows/integration-test-iOS16_4.yaml @@ -1,4 +1,4 @@ -name: "Integration Test: iOS 16.2" +name: "Integration Test: iOS 16.4" on: pull_request: @@ -54,7 +54,7 @@ jobs: make submodules bundle install make update_carthage_dependencies_ios - bundle exec fastlane test_iOS16_2 + bundle exec fastlane test_iOS16_4 - name: Upload carthage xcodebuild logs if: always() @@ -77,7 +77,7 @@ jobs: if: ${{ failure() && steps.analyzer-output.outcome == 'failure' }} uses: actions/upload-artifact@v2 with: - name: static-analyzer-reports-test_iOS16_2 + name: static-analyzer-reports-test_iOS16_4 path: ./derived_data/**/report-*.html - name: Run Examples Tests @@ -85,7 +85,7 @@ jobs: run: | pod repo update pod install - bundle exec fastlane scan -s Tests --output-directory "fastlane/test_output/examples/test_iOS16_2" + bundle exec fastlane scan -s Tests --output-directory "fastlane/test_output/examples/test_iOS16_4" - name: Build APNS Example Project working-directory: ./Examples/AblyPush diff --git a/.github/workflows/integration-test-tvOS16_1.yaml b/.github/workflows/integration-test-tvOS16_4.yaml similarity index 95% rename from .github/workflows/integration-test-tvOS16_1.yaml rename to .github/workflows/integration-test-tvOS16_4.yaml index b9e8255d9..fed7241d8 100644 --- a/.github/workflows/integration-test-tvOS16_1.yaml +++ b/.github/workflows/integration-test-tvOS16_4.yaml @@ -1,4 +1,4 @@ -name: "Integration Test: tvOS 16.1" +name: "Integration Test: tvOS 16.4" on: pull_request: @@ -54,7 +54,7 @@ jobs: make submodules bundle install make update_carthage_dependencies_tvos - bundle exec fastlane test_tvOS16_1 + bundle exec fastlane test_tvOS16_4 - name: Upload carthage xcodebuild logs if: always() @@ -77,7 +77,7 @@ jobs: if: ${{ failure() && steps.analyzer-output.outcome == 'failure' }} uses: actions/upload-artifact@v2 with: - name: static-analyzer-reports-test_tvOS16_1 + name: static-analyzer-reports-test_tvOS16_4 path: ./derived_data/**/report-*.html - name: Run Examples Tests @@ -85,7 +85,7 @@ jobs: run: | pod repo update pod install - bundle exec fastlane scan -s Tests --output-directory "fastlane/test_output/examples/test_tvOS_16_1" + bundle exec fastlane scan -s Tests --output-directory "fastlane/test_output/examples/test_tvOS_16_4" - name: Xcodebuild Logs Artifact if: always() diff --git a/fastlane/Fastfile b/fastlane/Fastfile index dd04241bb..fa6c3d2e9 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -22,8 +22,8 @@ end platform :ios do LANE_CONFIGS = [ - LaneConfig.new(:test_iOS16_2, "Ably-iOS", ["iPhone 14 (16.2)"]), - LaneConfig.new(:test_tvOS16_1, "Ably-tvOS", ["Apple TV 4K (2nd generation) (16.1)"]), + LaneConfig.new(:test_iOS16_4, "Ably-iOS", ["iPhone 14 (16.4)"]), + LaneConfig.new(:test_tvOS16_4, "Ably-tvOS", ["Apple TV 4K (3rd generation) (16.4)"]), LaneConfig.new(:test_macOS, "Ably-macOS") ]