Clear ccache #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Clear ccache | |
| # =============================================================== | |
| # =============================================================== | |
| on: | |
| # On-demand binary generation | |
| workflow_dispatch: | |
| jobs: | |
| # Filter build handling : push in master, commits in PR, comments in PR and dispatch | |
| clear_ccache_by_hand: | |
| strategy: | |
| fail-fast: false | |
| runs-on: self-hosted | |
| steps: | |
| - name: Clear ccache | |
| shell: bash | |
| run: | | |
| ccache --clear | |