From e1b57849012c39efd2828215dc4a3d5007e004e4 Mon Sep 17 00:00:00 2001 From: TAKANO Mitsuhiro Date: Sat, 21 Oct 2023 00:32:45 +0900 Subject: [PATCH] ignore doxygen wranings Document generated successfly if `make doc` exit code equals `0` So, ignoring warnigs is reasonable in GitHub Actions --- .github/workflows/retdec-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/retdec-ci.yml b/.github/workflows/retdec-ci.yml index ac673e059..5403f4b86 100644 --- a/.github/workflows/retdec-ci.yml +++ b/.github/workflows/retdec-ci.yml @@ -127,7 +127,7 @@ jobs: cmake .. -DCMAKE_INSTALL_PREFIX=install -DRETDEC_DOC=ON make doc -j$(nproc) - - name: Test Docs + - name: Display Docs Warnings run: | file="build/doc/doxygen/doxygen.log" echo "checking file: $file" @@ -139,5 +139,5 @@ jobs: echo "==========================================" echo "$content" echo "==========================================" - exit 1 + exit 0 fi