99 workflow_dispatch :
1010 inputs :
1111 record_snapshots :
12- description : ' Record missing snapshots on CI?'
13- type : boolean
14- required : false
15- default : false
16- remove_and_record_snapshots :
17- description : ' Reset all the snapshots on CI?'
12+ description : ' Record snapshots on CI?'
1813 type : boolean
1914 required : false
2015 default : false
5247 automated-code-review :
5348 name : Automated Code Review
5449 runs-on : macos-15
55- if : ${{ github.event.inputs.record_snapshots != 'true' && github.event.inputs.remove_and_record_snapshots != 'true' }}
50+ if : ${{ github.event.inputs.record_snapshots != 'true' }}
5651 env :
5752 XCODE_VERSION : " 15.4"
5853 steps :
7166 build-xcode15 :
7267 name : Build SDKs (Xcode 15.0)
7368 runs-on : macos-15
74- if : ${{ github.event.inputs.record_snapshots != 'true' && github.event.inputs.remove_and_record_snapshots != 'true' }}
69+ if : ${{ github.event.inputs.record_snapshots != 'true' }}
7570 env :
7671 XCODE_VERSION : " 15.4"
7772 steps :
10499 INSTALL_YEETD : true
105100 INSTALL_SONAR : true
106101 - name : Run UI Tests (Debug)
107- run : bundle exec fastlane test_ui device:"${{ env.IOS_SIMULATOR_DEVICE }}" record:"${{ github.event.inputs.record_snapshots }}" remove_and_record:"${{ github.event.inputs.remove_and_record_snapshots }}"
102+ run : bundle exec fastlane test_ui device:"${{ env.IOS_SIMULATOR_DEVICE }}" record:"${{ github.event.inputs.record_snapshots }}"
108103 timeout-minutes : 120
109104 env :
110105 GITHUB_TOKEN : ${{ secrets.CI_BOT_GITHUB_TOKEN }} # to open a PR
@@ -139,7 +134,7 @@ jobs:
139134 allure_testops_launch :
140135 name : Launch Allure TestOps
141136 runs-on : macos-13
142- if : ${{ github.event.inputs.record_snapshots != 'true' && github.event.inputs.remove_and_record_snapshots != 'true' }}
137+ if : ${{ github.event.inputs.record_snapshots != 'true' }}
143138 needs : build-test-app-and-frameworks
144139 outputs :
145140 launch_id : ${{ steps.get_launch_id.outputs.launch_id }}
@@ -158,7 +153,7 @@ jobs:
158153 test-e2e-debug :
159154 name : Test E2E UI (Debug)
160155 runs-on : macos-15
161- if : ${{ github.event.inputs.record_snapshots != 'true' && github.event.inputs.remove_and_record_snapshots != 'true' }}
156+ if : ${{ github.event.inputs.record_snapshots != 'true' }}
162157 needs :
163158 - allure_testops_launch
164159 - build-test-app-and-frameworks
@@ -213,7 +208,7 @@ jobs:
213208 build-apps :
214209 name : Build Demo App
215210 runs-on : macos-14
216- if : ${{ github.event.inputs.record_snapshots != 'true' && github.event.inputs.remove_and_record_snapshots != 'true' }}
211+ if : ${{ github.event.inputs.record_snapshots != 'true' }}
217212 needs : build-test-app-and-frameworks
218213 steps :
219214
0 commit comments