From a1e4ec197ff86ac258e2a65d4ce8ad2a2c42c056 Mon Sep 17 00:00:00 2001 From: thephez Date: Mon, 5 Feb 2018 11:51:59 -0500 Subject: [PATCH] config - Cache doxygen manually compiled binary --- .travis.yml | 4 +++- scripts/build-install-doxygen.sh | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9a3456a9..e635925a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,9 @@ language: ruby rvm: - "2.5.0" sudo: false -cache: bundler +cache: + - bundler + - $TRAVIS_BUILD_DIR/doxygen-src/build/bin env: # http://docs.travis-ci.com/user/environment-variables/#Global-Variables global: diff --git a/scripts/build-install-doxygen.sh b/scripts/build-install-doxygen.sh index 9624971d..fc5f1a78 100644 --- a/scripts/build-install-doxygen.sh +++ b/scripts/build-install-doxygen.sh @@ -1,6 +1,8 @@ #!/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