Skip to content

Commit 5bdc3c2

Browse files
authored
Print ccache stats and configuration for debugging (#25446)
1 parent e27d7fe commit 5bdc3c2

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.circleci/config.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,12 @@ commands:
176176
./emcc --clear-cache
177177
- pip-install
178178
- run: apt-get install -q -y ninja-build ccache
179+
- run:
180+
name: Ccache stats and configuration
181+
command: |
182+
ccache -s
183+
ccache --print-stats
184+
ccache -p
179185
- run:
180186
name: embuilder build ALL
181187
command: |
@@ -201,9 +207,12 @@ commands:
201207
./embuilder build MINIMAL --pic --lto
202208
./test/runner test_hello_world
203209
- run:
204-
name: "Ccache stats"
210+
name: "Ccache stats and configuration"
205211
command: |
212+
date
213+
ccache -s
206214
ccache --print-stats
215+
ccache -p
207216
ccache --zero-stats
208217
209218
persist:

0 commit comments

Comments
 (0)