From 213576a9491d2882307d98b93a09301eca2c1595 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Sat, 30 Dec 2023 20:00:44 +0100 Subject: [PATCH] Fail with make check output --- .github/workflows/build.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d8b97b95..99b8fa35 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -155,12 +155,12 @@ jobs: mkdir -p ~/.dillo/ cp ../install/etc/dillo/* ~/.dillo/ export DILLOBIN=$(readlink -f ../install/bin/dillo) - make check || true - cat test/html/test-suite.log || true - find test/html -type p -delete || true - - name: Archive production artifacts - uses: actions/upload-artifact@v3 - with: - name: upload-html-test-results - path: | - build/test/html + make check || (cat test/html/test-suite.log; false) +# - name: Remove pipes +# run: find test/html -type p -delete || true +# - name: Archive production artifacts +# uses: actions/upload-artifact@v3 +# with: +# name: upload-html-test-results +# path: | +# build/test/html