diff options
author | Jack Lloyd <[email protected]> | 2017-08-31 14:24:16 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-31 14:24:16 -0400 |
commit | ae5baecf626c925f14545a45290fa83628f1961c (patch) | |
tree | 6506b578a5febe42f9b7c46eb4d75d70451e3c9a /.travis.yml | |
parent | fa69b2c9021d3287c2400e6f601312197a3e2f4e (diff) |
Bump ccache size on Travis
I think the problem with caching on the fuzzer build is the files
are large due to debug iterators + debug symbols + ASan. So compiling
the latter half of the build ends up flushing out most of the files
cached from the first half of the build.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 45e36e7f8..b87dafd19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,8 @@ compiler: env: global: - - CCACHE_MAXSIZE=150M - - CCACHE_MAXFILES=2000 + - CCACHE_MAXSIZE=250M + - CCACHE_MAXFILES=1500 - CCACHE_COMPRESS=1 # SONAR_TOKEN for accessing the Sonar server - secure: "VezRbHFg6kllV5WG06M3tG3aHJaC3xrMylJ6RCVbL+uz2JeralVCqV7eIk4fVb9cu83Li+weEa0AJj0wkxpIUJ+vUh5F65L6gSWSbgHP7muOSVsmnEc6KvX4n3av/ZGe4geSmsxqh2pd/2xI1h7KioGRhKeqaZIdjVgWgGJW2iQ=" |