From dbfeb9e2daeec84e04cf6f2865ea91f455484cfd Mon Sep 17 00:00:00 2001 From: Mac Malone Date: Mon, 28 Jul 2025 16:29:51 -0400 Subject: [PATCH] chore: upload build directory as artifact in cache CI (#9600) This PR adds a step to the cached Linux Lake CI to upload the build directory. This will help us debug any cache failures. --- .github/workflows/build-template.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-template.yml b/.github/workflows/build-template.yml index 7f44afa3b8..a1a23d6f26 100644 --- a/.github/workflows/build-template.yml +++ b/.github/workflows/build-template.yml @@ -263,3 +263,8 @@ jobs: build/stage1/**/*.c build/stage1/**/*.c.o*' || '' }} key: ${{ steps.restore-cache.outputs.cache-primary-key }} + - name: Upload Build Artifact + if: always() && matrix.name == 'Linux Lake (cached)' + uses: actions/upload-artifact@v4 + with: + path: build