File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -130,14 +130,21 @@ jobs:
130130 export ZEPHYR_BASE=${PWD}
131131 export ZEPHYR_TOOLCHAIN_VARIANT=zephyr
132132 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+ test -f $d/samples/synchronization/sample.kernel.synchronization/zephyr/.config && \
137+ cp $d/samples/synchronization/sample.kernel.synchronization/zephyr/{.config,edt.pickle,../CMakeCache.txt} cache/${d};
138+ done
139+ mv cache ../twister_cache
133140 - name : Upload Filter Cache
134141 if : always()
135142 uses : actions/upload-artifact@v4
136143 with :
137144 name : Filter Cache
138145 if-no-files-found : ignore
139146 path : |
140- filter_cache
147+ twister_cache
141148
142149 twister-build :
143150 runs-on :
You can’t perform that action at this time.
0 commit comments