Print ccache statistics

This commit is contained in:
Bart
2025-12-03 17:00:52 -05:00
parent aec131bcbb
commit 30d2f70744

View File

@@ -122,6 +122,9 @@ jobs:
path: "${{ inputs.build_dir }}/**/*.o"
key: ${{ inputs.config_name }}
- name: Print out ccache statistics before building
run: ccache -s
- name: Build the binary
working-directory: ${{ inputs.build_dir }}
env:
@@ -135,6 +138,9 @@ jobs:
--parallel "${BUILD_NPROC}" \
--target "${CMAKE_TARGET}"
- name: Print out ccache statistics after building
run: ccache -s
- name: Save build objects
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with: