GHA: Include ccache output in cache

This commit is contained in:
James McCoy
2020-11-13 09:54:55 -05:00
parent f23b906ddd
commit ef0d558a3b

View File

@ -69,8 +69,10 @@ jobs:
env:
cache-name: asan-deps
with:
path: env.CACHE_NVIM_DEPS_DIR
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.base_ref }}
path: |
${{ env.CACHE_NVIM_DEPS_DIR }}
~/.ccache
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles(format('{0}/**', env.CACHE_NVIM_DEPS_DIR)) }}-${{ github.base_ref }}
- name: Build third-party
run: ./ci/before_script.sh
@ -119,8 +121,10 @@ jobs:
env:
cache-name: lint-deps
with:
path: env.CACHE_NVIM_DEPS_DIR
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.base_ref }}
path: |
${{ env.CACHE_NVIM_DEPS_DIR }}
~/.ccache
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles(format('{0}/**', env.CACHE_NVIM_DEPS_DIR)) }}-${{ github.base_ref }}
- name: Build third-party
run: ./ci/before_script.sh