File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 19
19
name : Test E2E UI (Debug)
20
20
strategy :
21
21
matrix :
22
- ios : [latest]
22
+ ios : [16.4]
23
+ setup_runtime : [false]
23
24
device : ["iPhone SE (3rd generation)", "iPhone 14", "iPhone 14 Pro Max"]
24
25
fail-fast : false
25
26
runs-on : macos-13
35
36
INSTALL_ALLURE : true
36
37
INSTALL_XCPARSE : true
37
38
- name : Setup iOS ${{ matrix.ios }} Runtime
38
- if : ${{ matrix.ios != 'latest' }}
39
+ if : ${{ matrix.setup_runtime }}
39
40
run : sudo xcodes runtimes install 'iOS ${{ matrix.ios }}'
40
41
- name : Launch Allure TestOps
41
42
run : bundle exec fastlane allure_launch cron:true
Original file line number Diff line number Diff line change 189
189
fastlane
190
190
pry
191
191
fastlane-plugin-sonarcloud_metric_kit (0.2.1 )
192
- fastlane-plugin-stream_actions (0.3.7 )
192
+ fastlane-plugin-stream_actions (0.3.18 )
193
+ xctest_list (= 1.2.1 )
193
194
fastlane-plugin-versioning (0.5.1 )
194
195
ffi (1.15.5 )
195
196
fourflusher (2.3.1 )
@@ -407,7 +408,7 @@ DEPENDENCIES
407
408
fastlane-plugin-emerge
408
409
fastlane-plugin-lizard
409
410
fastlane-plugin-sonarcloud_metric_kit
410
- fastlane-plugin-stream_actions (= 0.3.7 )
411
+ fastlane-plugin-stream_actions (= 0.3.18 )
411
412
fastlane-plugin-versioning
412
413
jazzy
413
414
json
Original file line number Diff line number Diff line change @@ -104,8 +104,8 @@ lane :test_e2e_mock do |options|
104
104
105
105
start_sinatra
106
106
107
- device = options [ :ios ] && options [ :ios ] != 'latest' ? "#{ options [ :device ] } (#{ options [ :ios ] } )" : options [ :device ]
108
- prepare_simulator ( device : device , reset : true ) if is_ci
107
+ device = options [ :ios ] ? "#{ options [ :device ] } (#{ options [ :ios ] } )" : options [ :device ]
108
+ prepare_simulator ( device : device ) if is_ci
109
109
110
110
scan_options = {
111
111
project : xcode_project ,
Original file line number Diff line number Diff line change 5
5
gem 'fastlane-plugin-versioning'
6
6
gem 'fastlane-plugin-emerge'
7
7
gem 'fastlane-plugin-sonarcloud_metric_kit'
8
- gem 'fastlane-plugin-stream_actions', '0.3.7 '
8
+ gem 'fastlane-plugin-stream_actions', '0.3.18 '
You can’t perform that action at this time.
0 commit comments