Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add doxygen download action to indent #16024

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 17 additions & 1 deletion .github/workflows/indent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 100
- uses: ssciwr/doxygen-install@v1
with:
version: "1.9.6"
- name: setup
run: |
./contrib/utilities/download_clang_format
sudo apt update && sudo apt install doxygen graphviz perl texlive-bibtex-extra
sudo apt update && sudo apt install graphviz perl texlive-bibtex-extra
doxygen --version
- name: indent
run: |
Expand All @@ -39,6 +42,19 @@ jobs:
# warning: Inheritance graph for 'SmartPointer' not generated, too many nodes (138), threshold is 50. Consider increasing DOT_GRAPH_MAX_NODES.
# warning: Inheritance graph for 'Subscriptor' not generated, too many nodes (209), threshold is 50. Consider increasing DOT_GRAPH_MAX_NODES.
sed -i '/Inheritance graph/d' doxygen.log
# Suppress:
# 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: 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