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.
This commit is contained in:
parent
cae1b1381d
commit
9290243910
|
@ -23,8 +23,12 @@ jobs:
|
|||
|
||||
env:
|
||||
PICO_SDK_PATH: $GITHUB_WORKSPACE/pico-sdk
|
||||
|
||||
|
||||
steps:
|
||||
- name: Compiler Cache Fixup
|
||||
run: |
|
||||
mkdir -p /home/runner/.ccache
|
||||
|
||||
- name: Compiler Cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
|
|
Loading…
Reference in New Issue