config - Copy Doxygen binary to folder for caching once built

This commit is contained in:
thephez 2018-02-05 12:48:43 -05:00
parent e634177d3c
commit 9b8e4593cb
3 changed files with 6 additions and 4 deletions

View file

@ -1,8 +1,6 @@
#!/bin/sh
set -ex
echo $(ls doxygen-src/build/bin)
# Build instructions from: https://www.stack.nl/~dimitri/doxygen/download.html
echo "Cloning doxygen repository..."
git clone https://github.com/doxygen/doxygen.git doxygen-src
@ -23,4 +21,8 @@ make
echo "Done building doxygen..."
./bin/doxygen -v
echo "Copy Doxygen binary to folder for caching..."
mkdir -p $TRAVIS_BUILD_DIR/doxygen-install
cp bin/doxygen $TRAVIS_BUILD_DIR/doxygen-install/
cd $TRAVIS_BUILD_DIR