We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de0c353 commit 34a76f1Copy full SHA for 34a76f1
.github/scripts/build-gh-pages.sh
@@ -1,8 +1,16 @@
1
#!/bin/bash
2
3
+
4
set -e
5
6
+echo "Installing apt packages"
7
sudo apt-get update >/dev/null
-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"
14
15
#List of branches to build docs for
16
#TODO: Remove doxygen branch once tested
0 commit comments