[ci] Rename temporary build parts
Adds an _ prefix to temporary build parts from parallelization to allow easier merging in later passes. ghstack-source-id: 714da85972e138d389224f67601dc7aaa6676e11 Pull Request resolved: https://github.com/facebook/react/pull/30385
Lauren Tan committed
Jul 18, 2024 at 16:19 UTC
76f8cf5277cff10a9a559ec10b810c3bca77f5d2
1 file changed
+10
-3
.github/workflows/runtime_build_and_test.yml
+10
-3
@@ -180,9 +180,8 @@ jobs:
180
- name: Archive build
181
uses: actions/upload-artifact@v4
182
with:
183
- name: build_${{ matrix.worker_id }}_${{ matrix.release_channel }}
184
- path: |
185
- build
183
+ name: _build_${{ matrix.worker_id }}_${{ matrix.release_channel }}
184
+ path: build
185
186
test_build:
187
name: yarn test-build
@@ -242,6 +241,7 @@ jobs:
241
- name: Restore archived build
242
uses: actions/download-artifact@v4
243
with:
244
+ pattern: _build_*
245
path: build
246
merge-multiple: true
247
- name: Display structure of build
@@ -269,6 +269,7 @@ jobs:
269
- name: Restore archived build
270
uses: actions/download-artifact@v4
271
with:
272
+ pattern: _build_*
273
path: build
274
merge-multiple: true
275
- name: Display structure of build
@@ -311,6 +312,7 @@ jobs:
312
- name: Restore archived build
313
uses: actions/download-artifact@v4
314
with:
315
+ pattern: _build_*
316
path: build
317
merge-multiple: true
318
- name: Display structure of build
@@ -341,6 +343,7 @@ jobs:
343
- name: Restore archived build
344
uses: actions/download-artifact@v4
345
with:
346
+ pattern: _build_*
347
path: build
348
merge-multiple: true
349
- name: Display structure of build
@@ -370,6 +373,7 @@ jobs:
373
- name: Restore archived build
374
uses: actions/download-artifact@v4
375
with:
376
+ pattern: _build_*
377
path: build
378
merge-multiple: true
379
- name: Display structure of build
@@ -407,6 +411,7 @@ jobs:
411
- name: Restore archived build
412
uses: actions/download-artifact@v4
413
with:
414
+ pattern: _build_*
415
path: build
416
merge-multiple: true
417
- name: Display structure of build
@@ -462,6 +467,7 @@ jobs:
467
- name: Restore archived build
468
uses: actions/download-artifact@v4
469
with:
470
+ pattern: _build_*
471
path: build
472
merge-multiple: true
473
- run: ./scripts/circleci/pack_and_store_devtools_artifacts.sh
@@ -507,6 +513,7 @@ jobs:
513
- name: Restore archived build
514
uses: actions/download-artifact@v4
515
with:
516
+ pattern: _build_*
517
path: build
518
merge-multiple: true
519
- run: |