mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
Correctly cache ccache build dir
According to https://docs.travis-ci.com/user/caching/#ccache-cache We typically would want to do `cache: ccache` but since we are also caching other dirs we have this option set manually. However it looks like the ccache dir was not set to be relative to home, which meant we were not getting any of the ccache cache wins across builds (which can be seen in how long it takes to rebuild v8worker2 each time)
This commit is contained in:
parent
7b5fbc7197
commit
6c73d45015
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@ language: c++
|
|||
cache:
|
||||
ccache: true
|
||||
directories:
|
||||
- .cache/
|
||||
- node_modules/
|
||||
- $HOME/.ccache
|
||||
- node_modules
|
||||
- $V8WORKER2_OUT_PATH
|
||||
env:
|
||||
global:
|
||||
|
|
Loading…
Reference in a new issue