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:
70
70
fastlane/sinatra_log.txt
71
71
fastlane/test_output/logs/*/Diagnostics/StreamChatSwiftUITestsAppUITests-*/*/*.txt
72
72
73
-
74
73
build-apps :
75
74
name : Build Demo App
76
75
strategy :
77
76
matrix :
78
77
include :
79
- - xcode : 14.3
78
+ - xcode : 14.3.1
80
79
os : macos-13
81
80
- xcode : 14.2
82
81
os : macos-12
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ require 'xcodeproj'
7
7
import 'Sonarfile'
8
8
import 'Allurefile'
9
9
10
- xcode_version = ENV [ 'XCODE_VERSION' ] || '14.3'
10
+ xcode_version = ENV [ 'XCODE_VERSION' ] || '14.3.1 '
11
11
xcode_project = 'StreamChatSwiftUI.xcodeproj'
12
12
sdk_names = [ 'StreamChatSwiftUI' ]
13
13
github_repo = ENV [ 'GITHUB_REPOSITORY' ] || 'GetStream/stream-chat-swiftui'
70
70
71
71
desc 'Runs tests in Debug config'
72
72
lane :test_ui do |options |
73
- next unless is_check_required ( sources : sources_matrix [ :ui ] )
73
+ # next unless is_check_required(sources: sources_matrix[:ui])
74
74
75
75
remove_snapshots if options [ :record ]
76
76
100
100
101
101
desc 'Runs e2e ui tests using mock server in Debug config'
102
102
lane :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])
104
104
105
105
start_sinatra
106
106
148
148
149
149
desc 'Builds Demo app'
150
150
lane :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])
152
152
153
153
scan (
154
154
project : xcode_project ,
You can’t perform that action at this time.
0 commit comments