GHA CI: only store compile cache on stable branches

Given the amount of PR and compile matrix, the CI cache size limit is
easy to hit. So for now on, only store compile cache for stable branches
to avoid cache thrashing.
This commit is contained in:
Chocobo1 2023-11-18 14:58:51 +08:00
parent 1aff030317
commit ba5229a069
2 changed files with 2 additions and 0 deletions

View file

@ -49,6 +49,7 @@ jobs:
- name: Setup ccache - name: Setup ccache
uses: Chocobo1/setup-ccache-action@v1 uses: Chocobo1/setup-ccache-action@v1
with: with:
store_cache: ${{ startsWith(github.ref, 'refs/heads/') }}
update_packager_index: false update_packager_index: false
- name: Install boost - name: Install boost

View file

@ -39,6 +39,7 @@ jobs:
- name: Setup ccache - name: Setup ccache
uses: Chocobo1/setup-ccache-action@v1 uses: Chocobo1/setup-ccache-action@v1
with: with:
store_cache: ${{ startsWith(github.ref, 'refs/heads/') }}
update_packager_index: false update_packager_index: false
ccache_options: | ccache_options: |
max_size=2G max_size=2G