build - Quiet wget and execute doxygen install first

This commit is contained in:
thephez 2018-01-25 14:43:57 -05:00
parent be67ef3a6c
commit 4b7b3408bc
2 changed files with 6 additions and 2 deletions

View file

@ -10,9 +10,9 @@ env:
- DOXYFILE: $TRAVIS_BUILD_DIR/doxygen/Doxyfile-dashdocs - DOXYFILE: $TRAVIS_BUILD_DIR/doxygen/Doxyfile-dashdocs
before_install: before_install:
- . $TRAVIS_BUILD_DIR/scripts/install-doxygen.sh
- gem update --system - gem update --system
- gem install bundler - gem install bundler
- . $TRAVIS_BUILD_DIR/scripts/install-doxygen.sh
# Install dependencies # Install dependencies
addons: addons:

View file

@ -1,5 +1,9 @@
#!/bin/sh #!/bin/sh
set -ex set -ex
wget http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.14.linux.bin.tar.gz wget -q http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.14.linux.bin.tar.gz
echo "Decompressing..."
tar -xzvf doxygen-1.8.14.linux.bin.tar.gz tar -xzvf doxygen-1.8.14.linux.bin.tar.gz
echo "Configure and Install Doxygen"
cd doxygen-1.8.14 && ./configure && make install cd doxygen-1.8.14 && ./configure && make install