From bf7aec83079056a115c14cddb64178ca37779259 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Wed, 10 Jul 2024 15:02:34 -0400 Subject: [PATCH] [ci] Add process_artifacts_combined job ghstack-source-id: 9bafffd0b2a200225d068148b1ccafa81070c051 Pull Request resolved: https://github.com/facebook/react/pull/30073 --- .github/workflows/runtime_build.yml | 40 +++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/.github/workflows/runtime_build.yml b/.github/workflows/runtime_build.yml index ae060ae06ab3e..267f1e86dd3b0 100644 --- a/.github/workflows/runtime_build.yml +++ b/.github/workflows/runtime_build.yml @@ -45,3 +45,43 @@ jobs: name: build_${{ matrix.worker_id }}_${{ matrix.release_channel }} path: | build + + process_artifacts_combined: + name: Process artifacts combined + needs: build_and_lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18.x + cache: "yarn" + cache-dependency-path: yarn.lock + - name: Restore cached node_modules + uses: actions/cache@v4 + id: node_modules + with: + path: "**/node_modules" + key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }} + - run: yarn install --frozen-lockfile + - name: Restore archived build + uses: actions/download-artifact@v4 + with: + path: build + merge-multiple: true + - run: echo ${{ github.sha }} >> build/COMMIT_SHA + - name: Scrape warning messages + run: | + mkdir -p ./build/__test_utils__ + node ./scripts/print-warnings/print-warnings.js > build/__test_utils__/ReactAllWarnings.js + # Compress build directory into a single tarball for easy download + - run: tar -zcvf ./build.tgz ./build + # TODO: Migrate scripts to use `build` directory instead of `build2` + - run: cp ./build.tgz ./build2.tgz + - name: Archive build artifacts + uses: actions/upload-artifact@v4 + with: + name: combined_artifacts_${{ github.sha }} + path: | + ./build.tgz + ./build2.tgz