Skip to content

Commit

Permalink
Suppress further warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpthiele committed Sep 22, 2023
1 parent da5746a commit 7ed14a3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/indent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ jobs:
# warning: @copybrief or @copydoc target '<name>' not found
# warning: Found recursive @copybrief or @copydoc relation for argument '<arg>'
sed -i '/@copybrief or @copydoc/d' doxygen.log
# Suppress:
# warning: @copydetails or @copydoc target '<name>' not found
# warning: Found recursive @copydetails or @copydoc relation for argument '<arg>'
sed -i '/@copydetails or @copydoc/d' doxygen.log
# Suppress:
# warning: '<name>' has @param documentation sections but no arguments
sed -i '/has @param documentation sections but no arguments/d' doxygen.log
# Suppress:
# warning: explicit link request to '<function>' could not be resolved
sed -i '/explicit link request to/d' doxygen.log
# Remove empty lines
sed -i '/^$/d' doxygen.log
! [ -s doxygen.log ] || exit 1
tar -czf doxygen_documentation.tar.gz doc/doxygen
- name: archive documentation
Expand Down

0 comments on commit 7ed14a3

Please sign in to comment.