Skip to content

Commit 3a96d11

Browse files
committed
Tiny CI adjustments
1 parent 353dc72 commit 3a96d11

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/cron-checks.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@ env:
1616
jobs:
1717
build-test-app-and-frameworks:
1818
name: Build Test App and Frameworks
19-
runs-on: macos-14
19+
runs-on: macos-13
2020
steps:
2121
- uses: actions/[email protected]
2222
- uses: ./.github/actions/ruby-cache
2323
- uses: ./.github/actions/xcode-cache
2424
- name: Build
2525
run: bundle exec fastlane build_test_app_and_frameworks
2626
timeout-minutes: 60
27+
env:
28+
XCODE_VERSION: "14.3.1"
2729
- uses: actions/upload-artifact@v3
2830
if: success()
2931
with:

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ gem 'rubocop', '1.38', group: :rubocop_dependencies
1212
gem 'sinatra', group: :sinatra_dependencies
1313
gem 'slather'
1414

15-
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
16-
eval_gemfile(plugins_path) if File.exist?(plugins_path)
15+
eval_gemfile('fastlane/Pluginfile')
1716

1817
group :fastlane_dependencies do
1918
gem 'badge'

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require 'net/http'
66
import 'Sonarfile'
77
import 'Allurefile'
88

9-
xcode_version = ENV['XCODE_VERSION'] || '15.0.1'
9+
xcode_version = ENV['XCODE_VERSION'] || '15.2'
1010
xcode_project = 'StreamVideo.xcodeproj'
1111
sdk_names = ['StreamVideo', 'StreamVideoSwiftUI', 'StreamVideoUIKit']
1212
podspec_names = ['StreamVideo', 'StreamVideo-XCFramework', 'StreamVideoSwiftUI', 'StreamVideoSwiftUI-XCFramework', 'StreamVideoUIKit', 'StreamVideoUIKit-XCFramework']

0 commit comments

Comments
 (0)