File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -70,13 +70,12 @@ jobs:
7070 fastlane/sinatra_log.txt
7171 fastlane/test_output/logs/*/Diagnostics/StreamChatSwiftUITestsAppUITests-*/*/*.txt
7272
73-
7473 build-apps :
7574 name : Build Demo App
7675 strategy :
7776 matrix :
7877 include :
79- - xcode : 14.3
78+ - xcode : 14.3.1
8079 os : macos-13
8180 - xcode : 14.2
8281 os : macos-12
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ require 'xcodeproj'
77import 'Sonarfile'
88import 'Allurefile'
99
10- xcode_version = ENV [ 'XCODE_VERSION' ] || '14.3'
10+ xcode_version = ENV [ 'XCODE_VERSION' ] || '14.3.1 '
1111xcode_project = 'StreamChatSwiftUI.xcodeproj'
1212sdk_names = [ 'StreamChatSwiftUI' ]
1313github_repo = ENV [ 'GITHUB_REPOSITORY' ] || 'GetStream/stream-chat-swiftui'
7070
7171desc 'Runs tests in Debug config'
7272lane :test_ui do |options |
73- next unless is_check_required ( sources : sources_matrix [ :ui ] )
73+ # next unless is_check_required(sources: sources_matrix[:ui])
7474
7575 remove_snapshots if options [ :record ]
7676
100100
101101desc 'Runs e2e ui tests using mock server in Debug config'
102102lane :test_e2e_mock do |options |
103- next unless is_check_required ( sources : sources_matrix [ :e2e ] )
103+ # next unless is_check_required(sources: sources_matrix[:e2e])
104104
105105 start_sinatra
106106
148148
149149desc 'Builds Demo app'
150150lane :build_demo do |options |
151- next unless is_check_required ( sources : sources_matrix [ :sample_apps ] )
151+ # next unless is_check_required(sources: sources_matrix[:sample_apps])
152152
153153 scan (
154154 project : xcode_project ,
You can’t perform that action at this time.
0 commit comments