diff options
author | James McCoy <jamessan@jamessan.com> | 2018-05-01 07:02:11 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2018-05-01 07:02:44 -0400 |
commit | d5da357925dffb84c9c6c49fd6c1fbdf6508cb7f (patch) | |
tree | 1556355f8990b5a79abaf46e23f21f7c1428990b /ci/before_script.sh | |
parent | 58b210e1146f5fe3dd1affe4ab81a3cf48ae27ab (diff) | |
download | rneovim-d5da357925dffb84c9c6c49fd6c1fbdf6508cb7f.tar.gz rneovim-d5da357925dffb84c9c6c49fd6c1fbdf6508cb7f.tar.bz2 rneovim-d5da357925dffb84c9c6c49fd6c1fbdf6508cb7f.zip |
travis: Enable ccache
Diffstat (limited to 'ci/before_script.sh')
-rwxr-xr-x | ci/before_script.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/before_script.sh b/ci/before_script.sh index 445996a8df..49b4e068b5 100755 --- a/ci/before_script.sh +++ b/ci/before_script.sh @@ -20,6 +20,9 @@ if [[ -n "${LLVM_SYMBOLIZER}" ]] && [[ ! $(type -P "${LLVM_SYMBOLIZER}") ]]; the exit 1 fi +# Show ccache stats so we can compare in before_cache +ccache -s 2>/dev/null || true + if [[ "${TRAVIS_OS_NAME}" == osx ]]; then # Adds user to a dummy group. # That allows to test changing the group of the file by `os_fchown`. |