Skip to content

Commit afc8764

Browse files
fix(ccache): fix ccache stats (#4622)
* remove ccache stats Signed-off-by: Oguz Ozturk <oguzkaganozt@gmail.com> * style(pre-commit): autofix --------- Signed-off-by: Oguz Ozturk <oguzkaganozt@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 038f8a6 commit afc8764

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/actions/docker-build-and-push/action.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,8 @@ runs:
182182
echo 'devel URL ${{ steps.artifact-upload-step-devel.outputs.artifact-url }}'
183183
echo 'runtime URL ${{ steps.artifact-upload-step-runtime.outputs.artifact-url }}'
184184
shell: bash
185+
186+
- name: Show ccache stats
187+
run: |
188+
ccache -s
189+
shell: bash

.github/workflows/build-main-self-hosted.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,3 @@ jobs:
6767
- name: Show disk space
6868
run: |
6969
df -h
70-
71-
- name: Show ccache stats
72-
run: |
73-
ccache -s

.github/workflows/build-main.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,3 @@ jobs:
6262
- name: Show disk space
6363
run: |
6464
df -h
65-
66-
- name: Show ccache stats
67-
run: |
68-
ccache -s

0 commit comments

Comments
 (0)