We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eecd567 commit 580b865Copy full SHA for 580b865
1 file changed
.github/workflows/build-examples.yml
@@ -43,10 +43,9 @@ jobs:
43
44
- name: Build host examples
45
run: |
46
- mkdir -p ~/.cache/ccache
+ export CCACHE_DIR="$HOME/.cache/ccache"
47
+ mkdir -p "$CCACHE_DIR"
48
python3 scripts/build_examples.py --host
- env:
49
- CCACHE_DIR: ~/.cache/ccache
50
51
build-stm32:
52
name: STM32 Examples
@@ -73,7 +72,6 @@ jobs:
73
72
74
- name: Build STM32 examples
75
76
77
python3 scripts/build_examples.py --stm32
78
79
0 commit comments