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