Skip to content

Commit 580b865

Browse files
chore fix: ccache missing
1 parent eecd567 commit 580b865

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/build-examples.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,9 @@ jobs:
4343
4444
- name: Build host examples
4545
run: |
46-
mkdir -p ~/.cache/ccache
46+
export CCACHE_DIR="$HOME/.cache/ccache"
47+
mkdir -p "$CCACHE_DIR"
4748
python3 scripts/build_examples.py --host
48-
env:
49-
CCACHE_DIR: ~/.cache/ccache
5049
5150
build-stm32:
5251
name: STM32 Examples
@@ -73,7 +72,6 @@ jobs:
7372
7473
- name: Build STM32 examples
7574
run: |
76-
mkdir -p ~/.cache/ccache
75+
export CCACHE_DIR="$HOME/.cache/ccache"
76+
mkdir -p "$CCACHE_DIR"
7777
python3 scripts/build_examples.py --stm32
78-
env:
79-
CCACHE_DIR: ~/.cache/ccache

0 commit comments

Comments
 (0)