Skip to content

Commit

Permalink
ci: Manually install current Doxygen version
Browse files Browse the repository at this point in the history
Required for doxygen-awesome style
  • Loading branch information
ltoenning committed Nov 6, 2023
1 parent 568761b commit c04aa8f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-sola.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,16 @@ jobs:
- name: Install pip dependencies
run: pip install -r docs/requirements.txt
- name: Install doxygen
run: sudo apt-get install -y doxygen
run: |
curl -LO https://github.com/doxygen/doxygen/releases/download/Release_1_9_8/doxygen-1.9.8.linux.bin.tar.gz
tar xzfv doxygen-1.9.8.linux.bin.tar.gz -C ~
rm doxygen-1.9.8.linux.bin.tar.gz
- name: Build mkdocs
run: mkdocs build
- name: Build doxygen
run: doxygen
run: |
export PATH="~/doxygen-1.9.8/bin:$PATH"
doxygen
ns-3_compile:
runs-on: ubuntu-22.04
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@ jobs:
- name: Install pip dependencies
run: pip install -r docs/requirements.txt
- name: Install doxygen
run: sudo apt-get install -y doxygen
run: |
curl -LO https://github.com/doxygen/doxygen/releases/download/Release_1_9_8/doxygen-1.9.8.linux.bin.tar.gz
tar xzfv doxygen-1.9.8.linux.bin.tar.gz -C ~
rm doxygen-1.9.8.linux.bin.tar.gz
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Build mkdocs
run: mkdocs build
- name: Build doxygen
run: |
export PATH="~/doxygen-1.9.8/bin:$PATH"
doxygen
rm html/doxygen -r # Remove doxygen placeholder folder
mv doxygen_output/html html/doxygen
Expand Down

0 comments on commit c04aa8f

Please sign in to comment.