aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorD G Turner2019-12-19 12:08:04 +0000
committerD G Turner2019-12-19 12:08:04 +0000
commit6ea7d4e05b0669a4fa13c1c5dc6cc1f4cb809814 (patch)
tree0fdd32442638bc07969a333addae33c5b93c094c /.travis.yml
parente7bbc337972f49cfe60a5d416b27566575ce08bb (diff)
downloadscummvm-rg350-6ea7d4e05b0669a4fa13c1c5dc6cc1f4cb809814.tar.gz
scummvm-rg350-6ea7d4e05b0669a4fa13c1c5dc6cc1f4cb809814.tar.bz2
scummvm-rg350-6ea7d4e05b0669a4fa13c1c5dc6cc1f4cb809814.zip
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.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
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