ci: workflows: create cache directory for ccache
Create cache directory before moving ccache. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
5d87abccb2
commit
135f5376c1
3 changed files with 3 additions and 0 deletions
1
.github/workflows/clang.yaml
vendored
1
.github/workflows/clang.yaml
vendored
|
@ -94,6 +94,7 @@ jobs:
|
|||
|
||||
- name: ccache stats initial
|
||||
run: |
|
||||
mkdir -p /github/home/.cache
|
||||
test -d github/home/.cache/ccache && rm -rf /github/home/.cache/ccache && mv github/home/.cache/ccache /github/home/.cache/ccache
|
||||
ccache -M 10G -s
|
||||
|
||||
|
|
1
.github/workflows/codecov.yaml
vendored
1
.github/workflows/codecov.yaml
vendored
|
@ -78,6 +78,7 @@ jobs:
|
|||
|
||||
- name: ccache stats initial
|
||||
run: |
|
||||
mkdir -p /github/home/.cache
|
||||
test -d github/home/.cache/ccache && mv github/home/.cache/ccache /github/home/.cache/ccache
|
||||
ccache -M 10G -s
|
||||
|
||||
|
|
1
.github/workflows/twister.yaml
vendored
1
.github/workflows/twister.yaml
vendored
|
@ -208,6 +208,7 @@ jobs:
|
|||
|
||||
- name: ccache stats initial
|
||||
run: |
|
||||
mkdir -p /github/home/.cache
|
||||
test -d github/home/.cache/ccache && rm -rf /github/home/.cache/ccache && mv github/home/.cache/ccache /github/home/.cache/ccache
|
||||
ccache -M 10G -s
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue