Travis: Use separate SCons caches for each build job

This commit is contained in:
Rémi Verschelde 2017-11-26 23:10:31 +01:00
parent 024c4f14a1
commit 4766c4fc6c

View file

@ -6,11 +6,11 @@ sudo: false
env:
global:
- SCONS_CACHE=$HOME/.scons_cache
- SCONS_CACHE_ROOT=$HOME/.scons_cache
cache:
directories:
- $SCONS_CACHE
- $SCONS_CACHE_ROOT
matrix:
include:
@ -88,5 +88,6 @@ 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