From b88ec6016eacd390c7e68344c50049764515eba9 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 31 Oct 2024 08:57:20 -0400 Subject: [PATCH] Upload artifacts on CI failure (#5021) Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> Co-authored-by: Laurenz --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4de2fe5a5..9ddb309bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,25 @@ jobs: - uses: Swatinem/rust-cache@v2 - run: cargo test --workspace --no-run - run: cargo test --workspace --no-fail-fast + - name: Upload rendered test output + if: failure() + uses: actions/upload-artifact@v4 + with: + name: tests-rendered-${{ matrix.os }} + path: tests/store/render/** + retention-days: 3 + - name: Update test artifacts + if: failure() + run: | + cargo test --workspace --test tests -- --update + echo 'updated_artifacts=1' >> "$GITHUB_ENV" + - name: Upload updated reference output (for use if the test changes are desired) + if: failure() && env.updated_artifacts + uses: actions/upload-artifact@v4 + with: + name: tests-updated-${{ matrix.os }} + path: tests/ref/** + retention-days: 3 checks: name: Check clippy, formatting, and documentation