Skip to content

Commit c76974e

Browse files
committed
Reduce size limit for ccache to 200 MB
- also evicts cache files that untouched during the job run - see #301
1 parent 8a33ce7 commit c76974e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ jobs:
5555
uses: hendrikmuhs/[email protected]
5656
with:
5757
key: ${{ runner.os }}-ubuntu-${{ matrix.container_version }}
58+
max-size: "200M"
59+
evict-old-files: 'job'
5860

5961
- name: Build PythonQt
6062
run: |
@@ -214,6 +216,8 @@ jobs:
214216
uses: hendrikmuhs/[email protected]
215217
with:
216218
key: ${{ runner.os }}-${{ matrix.qt-version }}
219+
max-size: "200M"
220+
evict-old-files: 'job'
217221

218222
- name: Detect exact versions
219223
id : versions

.github/workflows/build_latest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
uses: hendrikmuhs/[email protected]
5151
with:
5252
key: ${{ runner.os }}-${{ matrix.qt-version }}
53+
max-size: "200M"
54+
evict-old-files: 'job'
5355
if: ${{ matrix.os == 'ubuntu' }}
5456

5557
- name: Set environment

0 commit comments

Comments
 (0)