From 6ea7d4e05b0669a4fa13c1c5dc6cc1f4cb809814 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Thu, 19 Dec 2019 12:08:04 +0000 Subject: TRAVIS: Use CCache for OSX Builder The OSX builder keeps failing with timeouts and thus notifying false positives of build errors. This was not using ccache to speed up the build, so am trying to implement usage of this. --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index f81ef6830f..c6f6b0d1ba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,9 +66,12 @@ matrix: - sudo ln -s $(which ccache) /usr/lib/ccache/clang++ - os: osx compiler: clang - cache: + cache: ccache directories: - $HOME/Library/Caches/Homebrew + before_script: + - sudo ln -s $(which ccache) /usr/lib/ccache/clang + - sudo ln -s $(which ccache) /usr/lib/ccache/clang++ before_cache: - brew cleanup -- cgit v1.2.3