2017-09-14 00:34:25 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Check for Documentation warnings:
|
|
|
|
# doxygen-warning-log.txt should be an empty file
|
2018-02-03 21:12:13 +00:00
|
|
|
# sphinx-warning-log.txt should only contain (fuzzy) matches to ../sphinx-known-warnings.txt
|
2017-09-14 00:34:25 +00:00
|
|
|
RESULT=0
|
|
|
|
STARS='***************************************************'
|
|
|
|
|
|
|
|
if [ -s doxygen-warning-log.txt ]; then
|
|
|
|
echo "$STARS"
|
|
|
|
echo "Build failed due to doxygen warnings:"
|
|
|
|
cat doxygen-warning-log.txt
|
|
|
|
echo "$STARS"
|
|
|
|
RESULT=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove escape characters, file paths, line numbers from
|
|
|
|
# the Sphinx warning log
|
|
|
|
# (escape char removal from https://www.commandlinefu.com/commands/view/6141/remove-color-codes-special-characters-with-sed
|
|
|
|
sed -r 's:\x1B\[[0-9;]*[mK]::g' sphinx-warning-log.txt | \
|
2019-02-16 19:46:49 +00:00
|
|
|
sed -E "s/.*\/(.*):[0-9]+:/\1:line:/" > sphinx-warning-log-sanitized.txt
|
2017-09-14 00:34:25 +00:00
|
|
|
|
2018-02-03 21:12:13 +00:00
|
|
|
# diff sanitized warnings, ignoring lines which only appear in ../sphinx-known-warnings.txt
|
2017-09-14 00:34:25 +00:00
|
|
|
|
|
|
|
# format is to display only lines new or changed in second argument
|
|
|
|
DIFF_FORMAT="--unchanged-line-format= --old-line-format= --new-line-format=%L"
|
|
|
|
|
2018-02-03 21:12:13 +00:00
|
|
|
SPHINX_WARNINGS=$(diff $DIFF_FORMAT ../sphinx-known-warnings.txt sphinx-warning-log-sanitized.txt)
|
2017-09-14 00:34:25 +00:00
|
|
|
if ! [ -z "$SPHINX_WARNINGS" ]; then
|
|
|
|
echo "$STARS"
|
|
|
|
echo "Build failed due to new/different Sphinx warnings:"
|
|
|
|
echo "$SPHINX_WARNINGS"
|
|
|
|
echo "$STARS"
|
|
|
|
RESULT=1
|
2018-02-03 21:12:13 +00:00
|
|
|
echo "(Check files ../sphinx-known-warnings.txt and sphinx-warning-log.txt for full details.)"
|
2017-09-14 00:34:25 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit $RESULT
|
|
|
|
|