Skip to content

Commit bc58e68

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

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

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

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

3+
34
set -e
4-
sudo apt-get update >/dev/null
5-
sudo apt-get install -y git cmake doxygen graphviz >/dev/null
5+
6+
echo "Installing apt packages"
7+
apt-get update >/dev/null
8+
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)