From df9cafea8f49b8bf5684042a753a4e947ea78f46 Mon Sep 17 00:00:00 2001 From: AlexandreSinger Date: Tue, 4 Jun 2024 16:06:29 -0400 Subject: [PATCH] [CI] Fixed Issue with Artifacts not Being Saved On Failure --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7ff3acee97b..e79ca152aca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,6 +74,9 @@ jobs: NUM_CORES: ${{ matrix.cores }} - name: Upload test results + # We always want the test results to be uploaded, even when cancelled. + # https://docs.github.com/en/actions/learn-github-actions/expressions#always + if: ${{ always() }} # TODO: This runnner is running on a self-hosted CPU. In order to upgrade # to v4, need to upgrade the machine to support node20. uses: actions/upload-artifact@v3