From 99029cda01f9d1990c7abdea0403753eeb47e339 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 20 Oct 2020 15:29:15 -0700 Subject: [PATCH] don't fail CI if artifacts don't upload --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8668d7102d..c88a3c95ba 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -178,6 +178,7 @@ jobs: cat valgrind_logs.txt - uses: actions/upload-artifact@v2 if: always() + continue-on-error: true with: name: valgrind_logs.txt path: valgrind_logs.txt @@ -246,6 +247,7 @@ jobs: cat diff.txt - uses: actions/upload-artifact@v2 if: always() + continue-on-error: true with: name: process_replay_diff.txt path: diff.txt @@ -274,6 +276,7 @@ jobs: docker cp tmppilot:/tmp/openpilot/selfdrive/test/longitudinal_maneuvers/out/longitudinal/ out/ - uses: actions/upload-artifact@v2 if: always() + continue-on-error: true with: name: longitudinal path: out