diff options
author | Rhody Lugo <rhodylugo@gmail.com> | 2017-11-26 20:22:15 -0400 |
---|---|---|
committer | Rhody Lugo <rhodylugo@gmail.com> | 2017-11-27 01:43:10 -0400 |
commit | 1272497fec9336716622768cfffa04aa400191b7 (patch) | |
tree | 6c6e7f72bc4b4c25138114ca5f549b4b6e5db646 /.travis.yml | |
parent | 8dc89e787c8b2bc444010d67bcb47378add80061 (diff) | |
download | redot-engine-1272497fec9336716622768cfffa04aa400191b7.tar.gz |
prune scons shared cache
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 01821cef2d..346ac82e92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,11 +6,12 @@ sudo: false env: global: - - SCONS_CACHE_ROOT=$HOME/.scons_cache + - SCONS_CACHE=$HOME/.scons_cache + - SCONS_CACHE_LIMIT=128 cache: directories: - - $SCONS_CACHE_ROOT + - $SCONS_CACHE matrix: include: @@ -88,6 +89,5 @@ script: - if [ "$STATIC_CHECKS" = "yes" ]; then sh ./misc/travis/clang-format.sh; else - export SCONS_CACHE=$SCONS_CACHE_ROOT/${GODOT_TARGET}-${CXX}-tools_${TOOLS}/; scons -j2 CC=$CC CXX=$CXX platform=$GODOT_TARGET TOOLS=$TOOLS verbose=yes progress=no; fi |