using other source for doxygen

This commit is contained in:
Jan W. Krieger 2019-01-15 11:53:20 +01:00
parent 39bdc0e44e
commit e80014af2e

View File

@ -9,13 +9,19 @@ addons:
install: install:
############################################################################ ############################################################################
# Install a recent Doxygen # All the dependencies are installed in ${TRAVIS_BUILD_DIR}/deps/
############################################################################
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
- mkdir -p ${DEPS_DIR} && cd ${DEPS_DIR}
############################################################################
# Install a recent Doxygen DOXYGEN_URL="http://doxygen.nl/files/doxygen-1.8.15.linux.bin.tar.gz"
############################################################################ ############################################################################
- | - |
DOXYGEN_URL="http://doxygen.nl/files/doxygen-1.8.15.linux.bin.tar.gz" DOXYGEN_URL="https://ja.osdn.net/frs/g_redir.php?m=kent&f=doxygen%2Frel-1.8.15%2Fdoxygen-1.8.15.linux.bin.tar.gz"
mkdir doxygen && travis_retry wget --quiet -O - ${DOXYGEN_URL} | tar --strip-components=1 -xz -C doxygen mkdir doxygen && travis_retry wget --quiet -O - ${DOXYGEN_URL} | tar --strip-components=1 -xz -C doxygen
export PATH=${DEPS_DIR}/doxygen/bin:${PATH} export PATH=${DEPS_DIR}/doxygen/bin:${PATH}
doxygen --version doxygen --version
- doxygen --version
script: script:
- cd doc - cd doc