Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix : Compatibility issues with Doxygen version in runner and configuration #4732

Merged
merged 15 commits into from
Jun 19, 2024
Merged
Changes from 12 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
23 changes: 21 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,28 @@ jobs:
- name : Checkout
uses: actions/checkout@v4

- name: Install Doxygen
run: sudo apt-get install doxygen graphviz -y
- name: Install Clang and dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang

- name: Export Doxygen version in environment
shell: bash
run: |
echo "DOXYGEN_VERSION=1.11.0" >> $GITHUB_ENV
AdarshRawat1 marked this conversation as resolved.
Show resolved Hide resolved

- name: "Doxygen Installation"
shell: bash
run: |
wget https://github.com/doxygen/doxygen/releases/download/Release_${DOXYGEN_VERSION//./_}/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz
tar xzvf doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz
cd doxygen-${DOXYGEN_VERSION}
sudo make install
cd ..
rm -rf doxygen-${DOXYGEN_VERSION}*

- name: Install graphviz
run: sudo apt-get install graphviz -y

- name: Generate Doxygen Documentation
run: |
Expand Down
Loading