From 2fada874dc9d19b20a913a4cac067f0f105bb171 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 8 Dec 2018 21:38:56 +0000 Subject: [PATCH] Update URL to download Doxygen from for Travis --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1673cec0..10c93ddc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,10 +30,10 @@ install: - export PATH="$HOME/.local/bin:$PATH" # Don't install Doxygen from the repositories, it also gets the LaTeX packages # so is a ~ 700 MB download. - - wget ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.12.linux.bin.tar.gz - - tar -xf doxygen-1.8.12.linux.bin.tar.gz + - wget http://doxygen.nl/files/doxygen-1.8.14.linux.bin.tar.gz + - tar -xf doxygen-1.8.14.linux.bin.tar.gz # Add Doxygen binary path to PATH - - export PATH="$PWD/doxygen-1.8.12/bin:$PATH" + - export PATH="$PWD/doxygen-1.8.14/bin:$PATH" # Install cbindgen for generating C++ headers for Rust dependencies. - cbindgen --version || cargo install cbindgen --version 0.6.6