summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorRhody Lugo <rhodylugo@gmail.com>2017-11-25 22:48:37 -0400
committerRhody Lugo <rhodylugo@gmail.com>2017-11-26 10:21:09 -0400
commit17e9b4aa63f18c8844ab1ad18ecbd31bfcf71316 (patch)
tree0b13304bbcd036f137cceee7d4694e414d0af78d /.travis.yml
parent051f761a87f1706bde0a45da46a3dfe1afff424a (diff)
downloadredot-engine-17e9b4aa63f18c8844ab1ad18ecbd31bfcf71316.tar.gz
add support for scons cache and enable it for travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml23
1 files changed, 7 insertions, 16 deletions
diff --git a/.travis.yml b/.travis.yml
index 974ef93d3f..6747905292 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,7 +4,13 @@ dist: trusty
sudo: false
-cache: ccache
+env:
+ global:
+ - SCONS_CACHE=$HOME/.scons_cache
+
+cache:
+ directories:
+ - $SCONS_CACHE
matrix:
include:
@@ -67,20 +73,12 @@ install:
fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
misc/travis/scons-local-osx.sh;
- misc/travis/ccache-osx.sh;
fi
- if [ "$TRAVIS_OS_NAME" = "osx" ] && [ "$GODOT_TARGET" = "android" ]; then
misc/travis/android-tools-osx.sh;
fi
before_script:
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then
- export CCACHE="/usr/bin/ccache";
- fi
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then
- export CCACHE="/usr/local/bin/ccache";
- export PATH="/usr/local/opt/ccache/libexec:$PATH";
- fi
- if [ "$GODOT_TARGET" = "android" ]; then
export ANDROID_HOME=$TRAVIS_BUILD_DIR/godot-dev/build-tools/android-sdk;
export ANDROID_NDK_ROOT=$TRAVIS_BUILD_DIR/godot-dev/build-tools/android-ndk;
@@ -92,10 +90,3 @@ script:
else
scons -j2 CC=$CC CXX=$CXX platform=$GODOT_TARGET TOOLS=$TOOLS verbose=yes progress=no;
fi
-
-after_success:
- - if [ "$STATIC_CHECKS" != "yes" ] && [ $(command -v ccache) ]; then
- which ccache;
- ccache --version | grep "ccache version";
- ccache -s;
- fi;