diff --git a/.github/workflows/reusable-build-test-config.yml b/.github/workflows/reusable-build-test-config.yml index 963f41537d..f7d4c89774 100644 --- a/.github/workflows/reusable-build-test-config.yml +++ b/.github/workflows/reusable-build-test-config.yml @@ -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: