@@ -138,8 +138,6 @@ if [ "$BUILD_TYPE" != "all" ]; then
138
138
139
139
echo " idf.py -DIDF_TARGET=\" $target \" -DSDKCONFIG_DEFAULTS=\" $configs \" $BUILD_TYPE "
140
140
rm -rf build sdkconfig
141
- rm -rf dependencies.lock
142
- rm -rf /Users/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/managed_components/espressif__esp-dsp/.component_hash
143
141
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $configs " $BUILD_TYPE
144
142
if [ $? -ne 0 ]; then exit 1; fi
145
143
done
@@ -203,8 +201,9 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
203
201
204
202
echo " * Build IDF-Libs: $idf_libs_configs "
205
203
rm -rf build sdkconfig
206
- rm -rf dependencies.lock
207
- rm -rf /Users/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/managed_components/espressif__esp-dsp/.component_hash
204
+ pushd $AR_MANAGED_COMPS
205
+ rm -- ** /.component_hash
206
+ popd
208
207
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $idf_libs_configs " idf-libs
209
208
if [ $? -ne 0 ]; then exit 1; fi
210
209
@@ -217,8 +216,9 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
217
216
218
217
echo " * Build BootLoader: $bootloader_configs "
219
218
rm -rf build sdkconfig
220
- rm -rf dependencies.lock
221
- rm -rf /Users/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/managed_components/espressif__esp-dsp/.component_hash
219
+ pushd $AR_MANAGED_COMPS
220
+ rm -- ** /.component_hash
221
+ popd
222
222
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $bootloader_configs " copy-bootloader
223
223
if [ $? -ne 0 ]; then exit 1; fi
224
224
done
@@ -232,8 +232,9 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
232
232
233
233
echo " * Build Memory Variant: $mem_configs "
234
234
rm -rf build sdkconfig
235
- rm -rf dependencies.lock
236
- rm -rf /Users/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/managed_components/espressif__esp-dsp/.component_hash
235
+ pushd $AR_MANAGED_COMPS
236
+ rm -- ** /.component_hash
237
+ popd
237
238
idf.py -DIDF_TARGET=" $target " -DSDKCONFIG_DEFAULTS=" $mem_configs " mem-variant
238
239
if [ $? -ne 0 ]; then exit 1; fi
239
240
done
0 commit comments