From c838830dd1a48f65e0d6fe42e0db61e3311fb5b5 Mon Sep 17 00:00:00 2001 From: Jan Philipp Thiele Date: Tue, 31 Oct 2023 17:48:23 +0100 Subject: [PATCH] Update doxygen version to 1.9.6. --- .github/workflows/indent.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/indent.yml b/.github/workflows/indent.yml index 96204f61f1..0b0b26c1ac 100644 --- a/.github/workflows/indent.yml +++ b/.github/workflows/indent.yml @@ -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: | @@ -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 '' not found + # warning: Found recursive @copybrief or @copydoc relation for argument '' + sed -i '/@copybrief or @copydoc/d' doxygen.log + # Suppress: + # warning: @copydetails or @copydoc target '' not found + # warning: Found recursive @copydetails or @copydoc relation for argument '' + sed -i '/@copydetails or @copydoc/d' doxygen.log + # Suppress: + # warning: explicit link request to '' 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 -- 2.39.5