From 76a3ff1949bded39758750fe0c7093e48027e625 Mon Sep 17 00:00:00 2001 From: Owen Pearson Date: Mon, 30 Oct 2023 09:24:44 +0000 Subject: [PATCH] test on ios 17 --- .github/workflows/integration-test-iOS16_2.yaml | 8 ++++---- fastlane/Fastfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-test-iOS16_2.yaml b/.github/workflows/integration-test-iOS16_2.yaml index ef3f45e55..a4f0fad5d 100644 --- a/.github/workflows/integration-test-iOS16_2.yaml +++ b/.github/workflows/integration-test-iOS16_2.yaml @@ -1,4 +1,4 @@ -name: "Integration Test: iOS 16.2" +name: "Integration Test: iOS 17.0" on: pull_request: @@ -60,7 +60,7 @@ jobs: make submodules bundle install make update_carthage_dependencies_ios - bundle exec fastlane test_iOS16_2 + bundle exec fastlane test_iOS17_0 - name: Check Static Analyzer Output id: analyzer-output @@ -76,7 +76,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_iOS17_0 path: ./derived_data/**/report-*.html - name: Run Examples Tests @@ -84,7 +84,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_iOS17_0" - name: Build APNS Example Project working-directory: ./Examples/AblyPush diff --git a/fastlane/Fastfile b/fastlane/Fastfile index dd04241bb..e16acbd22 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -22,7 +22,7 @@ end platform :ios do LANE_CONFIGS = [ - LaneConfig.new(:test_iOS16_2, "Ably-iOS", ["iPhone 14 (16.2)"]), + LaneConfig.new(:test_iOS17_0, "Ably-iOS", ["iPhone 14 (17.0)"]), LaneConfig.new(:test_tvOS16_1, "Ably-tvOS", ["Apple TV 4K (2nd generation) (16.1)"]), LaneConfig.new(:test_macOS, "Ably-macOS") ]