Skip to content

Commit 460eab5

Browse files
committed
ci: Fix doxygen setup
It looks like newer version of Doxygen has issues if no output is generated. Specify to generate HTML output in tmp folder.
1 parent 9794761 commit 460eab5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/check_compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
shell: bash
6666
run: |
6767
sudo apt-get update
68-
sudo apt-get install -y doxygen
68+
sudo apt-get install -y doxygen graphviz
6969
- name: Check Doxygen
7070
shell: bash
7171
run: |

Doxyfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
WARN_NO_PARAMDOC = YES
22
WARN_LOGFILE = /tmp/doxygen_check/warnings.log
33
INPUT = $(DOXYGEN_INPUT)
4-
GENERATE_HTML = NO
4+
GENERATE_HTML = YES
5+
HTML_OUTPUT = /tmp/doxygen_check/html
56
GENERATE_LATEX = NO
67
MACRO_EXPANSION = YES
78
WARN_FORMAT = $line: $text

0 commit comments

Comments
 (0)