Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
matrix:
dockerfile: ["gnu","intel","cuda"]
steps:
- name: Force Clean Workspace
run: |
sudo chattr -i -R ${{ github.workspace }} 2>/dev/null || true
sudo chown -R $USER:$USER ${{ github.workspace }}
sudo find ${{ github.workspace }} -mindepth 1 -delete

- name: Checkout
uses: actions/checkout@v6

Expand Down
2 changes: 1 addition & 1 deletion doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,7 @@ HAVE_DOT = YES
# Minimum value: 0, maximum value: 32, default value: 0.
# This tag requires that the tag HAVE_DOT is set to YES.

DOT_NUM_THREADS = 0
DOT_NUM_THREADS = 2

# When you want a differently looking font in the dot files that doxygen
# generates you can specify the font name using DOT_FONTNAME. You need to make
Expand Down
Loading