Skip to content

Commit af54674

Browse files
chore(INFRA-3591): add temp RN+E2E Bitrise workflow; smoke Bitrise routing; bump KV temp actions
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent bb6eb1e commit af54674

3 files changed

Lines changed: 389 additions & 8 deletions

File tree

.github/workflows/run-e2e-smoke-tests-ios.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ jobs:
7878
changed_files: ${{ inputs.changed_files }}
7979
build_type: 'main'
8080
metamask_environment: 'qa'
81+
use_bitrise_runner: ${{ inputs.use_bitrise_runner }}
8182
secrets: inherit
8283

8384
perps-ios-smoke:
@@ -115,6 +116,7 @@ jobs:
115116
changed_files: ${{ inputs.changed_files }}
116117
build_type: 'main'
117118
metamask_environment: 'qa'
119+
use_bitrise_runner: ${{ inputs.use_bitrise_runner }}
118120
secrets: inherit
119121

120122
identity-ios-smoke:
@@ -228,6 +230,7 @@ jobs:
228230
changed_files: ${{ inputs.changed_files }}
229231
build_type: 'main'
230232
metamask_environment: 'qa'
233+
use_bitrise_runner: ${{ inputs.use_bitrise_runner }}
231234
secrets: inherit
232235

233236
multichain-api-ios-smoke:

.github/workflows/temp-bitrise-ios-kv.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
steps:
7777
- name: Checkout repo
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v6
7979

8080
- name: Print runner environment diagnostics
8181
run: |
@@ -122,7 +122,7 @@ jobs:
122122

123123
- name: Restore Xcode derived data from branch cache
124124
id: xcode-restore-cache
125-
uses: actions/cache@v4
125+
uses: actions/cache@v5
126126
with:
127127
path: |
128128
~/Library/Developer/Xcode/DerivedData
@@ -135,7 +135,7 @@ jobs:
135135
if: ${{ steps.xcode-restore-cache.outputs.cache-hit != 'true' && github.ref_name
136136
!= 'main' }}
137137
id: xcode-restore-cache-main
138-
uses: actions/cache/restore@v4
138+
uses: actions/cache/restore@v5
139139
with:
140140
path: |
141141
~/Library/Developer/Xcode/DerivedData
@@ -168,7 +168,7 @@ jobs:
168168

169169
- name: Restore .metamask folder
170170
id: restore-metamask
171-
uses: actions/cache@v4
171+
uses: actions/cache@v5
172172
with:
173173
path: .metamask
174174
key: .metamask-${{ hashFiles('package.json', 'yarn.lock') }}
@@ -196,7 +196,7 @@ jobs:
196196
197197
- name: Restore iOS app matching fingerprint from branch cache
198198
id: cache-restore
199-
uses: actions/cache@v4
199+
uses: actions/cache@v5
200200
with:
201201
path: ios/build/Build/Products/Release-iphonesimulator/MetaMask.app
202202
key: bitrise-ios-app-${{ github.ref_name }}-v${{ env.IOS_APP_CACHE_VERSION
@@ -206,7 +206,7 @@ jobs:
206206
if: ${{ steps.cache-restore.outputs.cache-hit != 'true' && github.ref_name !=
207207
'main' }}
208208
id: cache-restore-main
209-
uses: actions/cache/restore@v4
209+
uses: actions/cache/restore@v5
210210
with:
211211
path: ios/build/Build/Products/Release-iphonesimulator/MetaMask.app
212212
key: bitrise-ios-app-main-v${{ env.IOS_APP_CACHE_VERSION }}-${{
@@ -303,7 +303,7 @@ jobs:
303303

304304
- name: Upload iOS APP Artifact (Simulator)
305305
id: upload-app
306-
uses: actions/upload-artifact@v4
306+
uses: actions/upload-artifact@v6
307307
with:
308308
name: main-qa-MetaMask.app
309309
path: ios/build/Build/Products/Release-iphonesimulator/MetaMask.app
@@ -314,7 +314,7 @@ jobs:
314314
id: upload-sourcemap
315315
if: ${{ steps.cache-restore.outputs.cache-hit == 'true' ||
316316
steps.cache-restore-main.outputs.cache-hit == 'true' }}
317-
uses: actions/upload-artifact@v4
317+
uses: actions/upload-artifact@v6
318318
with:
319319
name: main-qa-index.js.map
320320
path: sourcemaps/ios/index.js.map

0 commit comments

Comments
 (0)