Evaluate doxygen in separate step

This commit is contained in:
badaix 2025-02-15 21:18:17 +01:00
parent 42f7f2698e
commit 82d2a189e4

View file

@ -83,6 +83,8 @@ jobs:
run: | run: |
mkdir -p build/doxygen mkdir -p build/doxygen
doxygen 2>&1 | tee build/doxygen.log doxygen 2>&1 | tee build/doxygen.log
- name: evaluate
run: |
WARNINGS=$(cat build/doxygen.log | sort | uniq | grep -e ": warning: " | wc -l) WARNINGS=$(cat build/doxygen.log | sort | uniq | grep -e ": warning: " | wc -l)
MAX_ALLOWED=431 MAX_ALLOWED=431
echo "Doxygen finished with $WARNINGS warnings, max allowed: $MAX_ALLOWED" echo "Doxygen finished with $WARNINGS warnings, max allowed: $MAX_ALLOWED"