1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

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.
This commit is contained in:
Andrew Kaster 2021-02-26 21:13:33 -07:00 committed by Andreas Kling
parent dc6485cfcb
commit a375133cc5

View file

@ -110,6 +110,8 @@ jobs:
SERENITY_RUN: "ci" SERENITY_RUN: "ci"
run: ninja run run: ninja run
timeout-minutes: 10 timeout-minutes: 10
# FIXME: When stable, remove continue on error. (See issue #5541)
continue-on-error: true
- name: Print target logs - name: Print target logs
if: ${{ !cancelled() && matrix.debug-macros == 'NORMAL_DEBUG'}} if: ${{ !cancelled() && matrix.debug-macros == 'NORMAL_DEBUG'}}
working-directory: ${{ github.workspace }}/Build working-directory: ${{ github.workspace }}/Build