[Test] Try to check if .ccache is in the build directory
This commit is contained in:
parent
c7d288c043
commit
df317271fd
|
@ -149,7 +149,7 @@ jobs:
|
||||||
- name: ccache cache files
|
- name: ccache cache files
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: .ccache
|
path: ${{runner.workspace}}/build/.ccache
|
||||||
key: ${{ matrix.config.name }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
|
key: ${{ matrix.config.name }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ matrix.config.name }}-ccache-
|
${{ matrix.config.name }}-ccache-
|
||||||
|
@ -190,6 +190,7 @@ jobs:
|
||||||
|
|
||||||
# Check the cache size and see if it is over the limit
|
# Check the cache size and see if it is over the limit
|
||||||
- name: Check ccache size
|
- name: Check ccache size
|
||||||
|
working-directory: ${{runner.workspace}}/build
|
||||||
shell: cmake -P {0}
|
shell: cmake -P {0}
|
||||||
run: |
|
run: |
|
||||||
execute_process(COMMAND ccache -s)
|
execute_process(COMMAND ccache -s)
|
||||||
|
|
Loading…
Reference in New Issue