Skip to content

Commit

Permalink
Try CI on macOS 13.4 explicitly.
Browse files Browse the repository at this point in the history
  • Loading branch information
maratal committed Jun 12, 2023
1 parent f626dde commit b04ab07
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Integration Test: iOS 16.2"
name: "Integration Test: iOS 16.4"

on:
pull_request:
Expand All @@ -12,7 +12,7 @@ on:

jobs:
check:
runs-on: macos-latest
runs-on: macos-13.4

env:
LC_CTYPE: en_US.UTF-8
Expand Down Expand Up @@ -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: Check Static Analyzer Output
id: analyzer-output
Expand All @@ -70,15 +70,15 @@ 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
working-directory: ./Examples/Tests
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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Integration Test: macOS Latest"
name: "Integration Test: macOS 13.4"

on:
pull_request:
Expand All @@ -12,7 +12,7 @@ on:

jobs:
check:
runs-on: macos-latest
runs-on: macos-13.4

env:
LC_CTYPE: en_US.UTF-8
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Integration Test: tvOS 16.1"
name: "Integration Test: tvOS 16.4"

on:
pull_request:
Expand All @@ -12,7 +12,7 @@ on:

jobs:
check:
runs-on: macos-latest
runs-on: macos-13.4

env:
LC_CTYPE: en_US.UTF-8
Expand Down Expand Up @@ -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: Check Static Analyzer Output
id: analyzer-output
Expand All @@ -70,15 +70,15 @@ 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
working-directory: ./Examples/Tests
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()
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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")
]

Expand Down

0 comments on commit b04ab07

Please sign in to comment.