Skip to content

Commit

Permalink
[ci] Rename temporary build parts
Browse files Browse the repository at this point in the history
Adds an _ prefix to temporary build parts from parallelization to allow
easier merging in later passes.

ghstack-source-id: 714da85972e138d389224f67601dc7aaa6676e11
Pull Request resolved: #30385
  • Loading branch information
poteto committed Jul 18, 2024
1 parent b2ec044 commit 76f8cf5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/runtime_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,8 @@ jobs:
- name: Archive build
uses: actions/upload-artifact@v4
with:
name: build_${{ matrix.worker_id }}_${{ matrix.release_channel }}
path: |
build
name: _build_${{ matrix.worker_id }}_${{ matrix.release_channel }}
path: build

test_build:
name: yarn test-build
Expand Down Expand Up @@ -242,6 +241,7 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
pattern: _build_*
path: build
merge-multiple: true
- name: Display structure of build
Expand Down Expand Up @@ -269,6 +269,7 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
pattern: _build_*
path: build
merge-multiple: true
- name: Display structure of build
Expand Down Expand Up @@ -311,6 +312,7 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
pattern: _build_*
path: build
merge-multiple: true
- name: Display structure of build
Expand Down Expand Up @@ -341,6 +343,7 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
pattern: _build_*
path: build
merge-multiple: true
- name: Display structure of build
Expand Down Expand Up @@ -370,6 +373,7 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
pattern: _build_*
path: build
merge-multiple: true
- name: Display structure of build
Expand Down Expand Up @@ -407,6 +411,7 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
pattern: _build_*
path: build
merge-multiple: true
- name: Display structure of build
Expand Down Expand Up @@ -462,6 +467,7 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
pattern: _build_*
path: build
merge-multiple: true
- run: ./scripts/circleci/pack_and_store_devtools_artifacts.sh
Expand Down Expand Up @@ -507,6 +513,7 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
pattern: _build_*
path: build
merge-multiple: true
- run: |
Expand Down

0 comments on commit 76f8cf5

Please sign in to comment.