Skip to content

Commit

Permalink
Debugging why ccache isn't being saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Feb 13, 2024
1 parent 6764687 commit 90be38c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -149,7 +149,7 @@ jobs:
- name: Cache ~/.ccache
uses: actions/cache@v4
with:
path: ~/.ccache/
path: ~/.ccache/**
key: ${{ runner.os }}-ccache2-${{ matrix.python-version }}

- name: Cache config.cache
Expand Down Expand Up @@ -265,6 +265,8 @@ jobs:
python -c 'import gevent.ares; print(gevent.ares)'
echo CCache stats
ccache -s -v
echo CCache Dir
ls -l ~/.ccache/ || true
- name: "Tests: Basic"
run: |
Expand Down Expand Up @@ -389,7 +391,7 @@ jobs:
- name: Cache ~/.ccache
uses: actions/cache@v4
with:
path: ~/.ccache/
path: ~/.ccache/**
key: ${{ runner.os }}-ccache2_embed-${{ matrix.python-version }}

- name: Cache config.cache
Expand Down Expand Up @@ -485,7 +487,7 @@ jobs:
- name: Cache ~/.ccache
uses: actions/cache@v4
with:
path: ~/.ccache/
path: ~/.ccache/**
key: ${{ runner.os }}-ccache_${{ matrix.config[2] }}-${{ matrix.config[0] }}

- name: Set up QEMU
Expand Down

0 comments on commit 90be38c

Please sign in to comment.