Skip to content

Commit

Permalink
CI: Fix ccache.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Gadgetoid committed Dec 3, 2024
1 parent cae1b13 commit 9290243
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9290243

Please sign in to comment.