From: Florian Forster Date: Mon, 27 Nov 2023 15:34:06 +0000 (+0100) Subject: Disable "exit on error" when running `make check`. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8baddcad4a4e3a44d0bb3896cc1f541ef9f505f3;p=thirdparty%2Fcollectd.git Disable "exit on error" when running `make check`. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9c13fbcdb..b4f0a8365 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,6 +63,7 @@ jobs: run: make -j$(nproc) -sk - name: Run make check run: | + set +e make $MAKEFLAGS check echo "$?" >make-check.status continue-on-error: true @@ -116,6 +117,7 @@ jobs: run: make -j$(nproc) -sk - name: Run make check run: | + set +e make $MAKEFLAGS check echo "$?" >make-check.status continue-on-error: true