Skip to content

Commit d3552bd

Browse files
fix: Update Doxyfile and ensure output directory exists
This commit addresses issues found during Doxygen generation: - Upgraded `Doxyfile` to version 1.9.8 using `doxygen -u` to remove obsolete tags and ensure compatibility. - Modified the `.github/workflows/analysis.yml` workflow to add a step that creates the `docs/doxygen` output directory before Doxygen is run. This resolves the "Output directory does not exist" error.
1 parent d20dd2b commit d3552bd

3 files changed

Lines changed: 2581 additions & 51 deletions

File tree

.github/workflows/analysis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- name: Install Doxygen
2222
run: sudo apt-get update && sudo apt-get install -y doxygen
2323

24+
- name: Create Doxygen Output Directory
25+
run: mkdir -p docs/doxygen
26+
2427
- name: Generate Doxygen Documentation
2528
run: doxygen Doxyfile
2629

0 commit comments

Comments
 (0)