Skip to content

Commit 9290243

Browse files
committed
CI: Fix ccache.
As per the docs ~/.ccache is only used if it exists. It wont exist unless it's cached. It wont cache unless it exists. Create it, to break the cycle.
1 parent cae1b13 commit 9290243

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cmake.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ jobs:
2323

2424
env:
2525
PICO_SDK_PATH: $GITHUB_WORKSPACE/pico-sdk
26-
26+
2727
steps:
28+
- name: Compiler Cache Fixup
29+
run: |
30+
mkdir -p /home/runner/.ccache
31+
2832
- name: Compiler Cache
2933
uses: actions/cache@v4
3034
with:

0 commit comments

Comments
 (0)