From a375133cc5de6130860285bf8224801e7613ad4e Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Fri, 26 Feb 2021 21:13:33 -0700 Subject: [PATCH] CI: Allow run step of on target tests to fail As documented in #5541, there are some Kernel issues that can sporadically cause the test run to fail. Add continue on error with a loud comment to let readers know what the issue(s) might be. --- .github/workflows/cmake.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index f2d49b3f50..fdf04ee579 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -110,6 +110,8 @@ jobs: SERENITY_RUN: "ci" run: ninja run timeout-minutes: 10 + # FIXME: When stable, remove continue on error. (See issue #5541) + continue-on-error: true - name: Print target logs if: ${{ !cancelled() && matrix.debug-macros == 'NORMAL_DEBUG'}} working-directory: ${{ github.workspace }}/Build