diff options
author | Teodor Mircea Ionita <teodor@mariadb.org> | 2018-11-01 09:14:19 +0000 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2018-11-08 18:30:44 +0400 |
commit | 11df536b8a1a778bfd5908e933ec2306fdf16357 (patch) | |
tree | db66243c3c4615ab92a3b35ac1b38f5974f3b864 /.travis.compiler.sh | |
parent | bac2ec3a5b28ed590826b20a4cf27fd788903bbd (diff) | |
download | mariadb-git-11df536b8a1a778bfd5908e933ec2306fdf16357.tar.gz |
travis: increase ccache size for linux jobs
Diffstat (limited to '.travis.compiler.sh')
-rwxr-xr-x | .travis.compiler.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.compiler.sh b/.travis.compiler.sh index 7a3b0dbc371..6b8de374219 100755 --- a/.travis.compiler.sh +++ b/.travis.compiler.sh @@ -22,7 +22,7 @@ if [[ "${TRAVIS_OS_NAME}" == 'linux' ]]; then exclude_modules; if which ccache ; then CMAKE_OPT="${CMAKE_OPT} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache" - ccache --max-size=1200M + ccache --max-size=2200M fi if [[ "${CXX}" == 'clang++' ]]; then export CXX CC=${CXX/++/} |