Skip to content

Commit 34a76f1

Browse files
Use Doxygen 1.12.0 for github pages builds
1 parent de0c353 commit 34a76f1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/scripts/build-gh-pages.sh

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
#!/bin/bash
22

3+
34
set -e
5+
6+
echo "Installing apt packages"
47
sudo apt-get update >/dev/null
5-
sudo apt-get install -y git cmake doxygen graphviz >/dev/null
8+
sudo apt-get install -y wget git cmake graphviz >/dev/null
9+
10+
echo "Installing Doxygen"
11+
wget https://www.doxygen.nl/files/doxygen-1.12.0.linux.bin.tar.gz >/dev/null
12+
tar -xzf doxygen-1.12.0.linux.bin.tar.gz >/dev/null
13+
export PATH="$PWD/doxygen-1.12.0/bin:$PATH"
614

715
#List of branches to build docs for
816
#TODO: Remove doxygen branch once tested

0 commit comments

Comments
 (0)