action.yml 563 B

12345678910111213141516171819
  1. name: 'Show Cache Stats'
  2. description: 'Displays statistics for ccache and Bazel remote cache to help analyze cache performance and hit rates'
  3. inputs:
  4. clear_stats:
  5. description: 'Whether to clear ccache stats after displaying (default: true)'
  6. required: true
  7. type: boolean
  8. default: true
  9. runs:
  10. using: 'composite'
  11. steps:
  12. - name: Show ccache Stats
  13. uses: ./.github/actions/cache-ccache-stats
  14. with:
  15. clear_stats: ${{ inputs.clear_stats }}
  16. - name: Show Cache Folder Stats
  17. uses: ./.github/actions/cache-folder-stats