Skip to content

Commit fdaf369

Browse files
authored
try to avoid check
1 parent b6a5e0e commit fdaf369

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ if [ "$BUILD_TYPE" != "all" ]; then
139139
echo "idf.py -DIDF_TARGET=\"$target\" -DSDKCONFIG_DEFAULTS=\"$configs\" $BUILD_TYPE"
140140
rm -rf build sdkconfig
141141
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
142+
rm -rf /Users/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/managed_components/espressif__esp-dsp/.component_hash
143143
idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$configs" $BUILD_TYPE
144144
if [ $? -ne 0 ]; then exit 1; fi
145145
done
@@ -204,6 +204,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
204204
echo "* Build IDF-Libs: $idf_libs_configs"
205205
rm -rf build sdkconfig
206206
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
207208
idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$idf_libs_configs" idf-libs
208209
if [ $? -ne 0 ]; then exit 1; fi
209210

@@ -217,6 +218,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
217218
echo "* Build BootLoader: $bootloader_configs"
218219
rm -rf build sdkconfig
219220
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
220222
idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$bootloader_configs" copy-bootloader
221223
if [ $? -ne 0 ]; then exit 1; fi
222224
done
@@ -231,6 +233,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
231233
echo "* Build Memory Variant: $mem_configs"
232234
rm -rf build sdkconfig
233235
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
234237
idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$mem_configs" mem-variant
235238
if [ $? -ne 0 ]; then exit 1; fi
236239
done

0 commit comments

Comments
 (0)