Update Doxygen workflow to set DOT_NUM_THREADS to 1 to prevent parallel processing issues

This commit is contained in:
SoftFever
2026-01-03 18:02:42 +08:00
parent a2c90e2de4
commit 06544bce9d

View File

@@ -26,6 +26,8 @@ jobs:
- name: Generate documentation
run: |
# Override DOT_NUM_THREADS to avoid parallel dot race condition bug
sed -i 's/^DOT_NUM_THREADS.*/DOT_NUM_THREADS = 1/' .doxygen
doxygen .doxygen
# Verify documentation was generated
if [ ! -f "internal_docs/index.html" ]; then