File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -201,6 +201,9 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
201
201
202
202
echo " * Build IDF-Libs: $idf_libs_configs "
203
203
rm -rf build sdkconfig
204
+ pushd $AR_MANAGED_COMPS
205
+ rm -- ** /.component_hash
206
+ popd
204
207
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $idf_libs_configs " idf-libs
205
208
if [ $? -ne 0 ]; then exit 1; fi
206
209
@@ -213,6 +216,9 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
213
216
214
217
echo " * Build BootLoader: $bootloader_configs "
215
218
rm -rf build sdkconfig
219
+ pushd $AR_MANAGED_COMPS
220
+ rm -- ** /.component_hash
221
+ popd
216
222
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $bootloader_configs " copy-bootloader
217
223
if [ $? -ne 0 ]; then exit 1; fi
218
224
done
@@ -226,6 +232,9 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
226
232
227
233
echo " * Build Memory Variant: $mem_configs "
228
234
rm -rf build sdkconfig
235
+ pushd $AR_MANAGED_COMPS
236
+ rm -- ** /.component_hash
237
+ popd
229
238
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $mem_configs " mem-variant
230
239
if [ $? -ne 0 ]; then exit 1; fi
231
240
done
You can’t perform that action at this time.
0 commit comments