Skip to content

Commit

Permalink
use latest ccache action
Browse files Browse the repository at this point in the history
  • Loading branch information
mradugin authored Jul 12, 2024
1 parent de8fdad commit c3b4046
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v4

- name: ccache
uses: hendrikmuhs/[email protected]
uses: hendrikmuhs/[email protected].13
with:
restore: false

Expand Down Expand Up @@ -80,8 +80,10 @@ jobs:
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run: |
cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --verbose
cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --target clean
ccache --show-stats
cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --target clean --verbose
cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --verbose
ccache --show-stats
- name: ccache show stats after
run: ccache --show-stats
Expand Down

0 comments on commit c3b4046

Please sign in to comment.