Skip to content

Commit

Permalink
Use Doxygen 1.12.0 for github pages builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew-Whitlock committed Nov 20, 2024
1 parent de0c353 commit bc58e68
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/scripts/build-gh-pages.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
#!/bin/bash


set -e
sudo apt-get update >/dev/null
sudo apt-get install -y git cmake doxygen graphviz >/dev/null

echo "Installing apt packages"
apt-get update >/dev/null
apt-get install -y wget git cmake graphviz >/dev/null

echo "Installing Doxygen"
wget https://www.doxygen.nl/files/doxygen-1.12.0.linux.bin.tar.gz >/dev/null
tar -xzf doxygen-1.12.0.linux.bin.tar.gz >/dev/null
export PATH="$PWD/doxygen-1.12.0/bin:$PATH"

#List of branches to build docs for
#TODO: Remove doxygen branch once tested
Expand Down

0 comments on commit bc58e68

Please sign in to comment.