We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f519ff7 commit 24ef40bCopy full SHA for 24ef40b
.github/workflows/twister.yaml
@@ -130,14 +130,20 @@ jobs:
130
export ZEPHYR_BASE=${PWD}
131
export ZEPHYR_TOOLCHAIN_VARIANT=zephyr
132
python3 ./scripts/twister --cmake-only -T samples/synchronization/ --outdir filter_cache
133
+ cd filter_cache
134
+ for d in `ls -1`; do
135
+ mkdir -p cache/${d};
136
+ cp $d/samples/synchronization/sample.kernel.synchronization/zephyr/{.config,edt.pickle,../CMakeCache.txt} cache/${d};
137
+ done
138
+ mv cache ../twister_cache
139
- name: Upload Filter Cache
140
if: always()
141
uses: actions/upload-artifact@v4
142
with:
143
name: Filter Cache
144
if-no-files-found: ignore
145
path: |
- filter_cache
146
+ twister_cache
147
148
twister-build:
149
runs-on:
0 commit comments