Skip to content

Commit 90be38c

Browse files
committed
Debugging why ccache isn't being saved.
1 parent 6764687 commit 90be38c

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
- name: Cache ~/.ccache
150150
uses: actions/cache@v4
151151
with:
152-
path: ~/.ccache/
152+
path: ~/.ccache/**
153153
key: ${{ runner.os }}-ccache2-${{ matrix.python-version }}
154154

155155
- name: Cache config.cache
@@ -265,6 +265,8 @@ jobs:
265265
python -c 'import gevent.ares; print(gevent.ares)'
266266
echo CCache stats
267267
ccache -s -v
268+
echo CCache Dir
269+
ls -l ~/.ccache/ || true
268270
269271
- name: "Tests: Basic"
270272
run: |
@@ -389,7 +391,7 @@ jobs:
389391
- name: Cache ~/.ccache
390392
uses: actions/cache@v4
391393
with:
392-
path: ~/.ccache/
394+
path: ~/.ccache/**
393395
key: ${{ runner.os }}-ccache2_embed-${{ matrix.python-version }}
394396

395397
- name: Cache config.cache
@@ -485,7 +487,7 @@ jobs:
485487
- name: Cache ~/.ccache
486488
uses: actions/cache@v4
487489
with:
488-
path: ~/.ccache/
490+
path: ~/.ccache/**
489491
key: ${{ runner.os }}-ccache_${{ matrix.config[2] }}-${{ matrix.config[0] }}
490492

491493
- name: Set up QEMU

0 commit comments

Comments
 (0)