Skip to content

Commit

Permalink
Update Doxygen to 1.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JonatanAntoni committed Feb 12, 2025
1 parent d576eed commit deb5588
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
- name: Install packages
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y graphviz plantuml libclang1-9 libclang-cpp1-9
- name: Install doxygen 1.9.2
sudo apt-get install --no-install-recommends -y graphviz plantuml
- name: Install doxygen 1.9.6
run: |
wget -O doxygen.tgz https://sourceforge.net/projects/doxygen/files/rel-1.9.2/doxygen-1.9.2.linux.bin.tar.gz/download
wget -O doxygen.tgz https://sourceforge.net/projects/doxygen/files/rel-1.9.6/doxygen-1.9.6.linux.bin.tar.gz/download
sudo tar -C /opt -xf doxygen.tgz
sudo ln -s /opt/doxygen-1.9.2/bin/doxygen /usr/local/bin/
sudo ln -s /opt/doxygen-1.9.6/bin/doxygen /usr/local/bin/
which doxygen
doxygen --version
- name: Install linkchecker
Expand Down
6 changes: 3 additions & 3 deletions doxygen/gen_doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# Pre-requisites:
# - bash shell (for Windows: install git for Windows)
# - doxygen 1.9.2
# - doxygen 1.9.6

set -o pipefail

Expand All @@ -21,8 +21,8 @@ if [[ ! -f "${DOXYGEN}" ]]; then
else
version=$("${DOXYGEN}" --version | sed -r -e 's/.*([1-9][0-9]*\.[0-9]+\.[0-9]+).*/\1/')
echo "DOXYGEN is ${DOXYGEN} at version ${version}"
if [[ "${version}" != "1.9.2" ]]; then
echo " >> Version is different from 1.9.2 !" >&2
if [[ "${version}" != "1.9.6" ]]; then
echo " >> Version is different from 1.9.6 !" >&2
fi
fi

Expand Down

0 comments on commit deb5588

Please sign in to comment.