Skip to content

Commit d8ee289

Browse files
authored
Remove conditional inclusion of builder specified components
1 parent 0339ae2 commit d8ee289

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ if [ "$BUILD_TYPE" != "all" ]; then
154154

155155
echo "idf.py -DIDF_TARGET=\"$target\" -DSDKCONFIG_DEFAULTS=\"$configs\" $BUILD_TYPE"
156156
rm -rf build sdkconfig
157-
COMPONENTS_SUBSET=full idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$configs" $BUILD_TYPE
157+
idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$configs" $BUILD_TYPE
158158
if [ $? -ne 0 ]; then exit 1; fi
159159
done
160160
exit 0
@@ -217,7 +217,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
217217

218218
echo "* Build IDF-Libs: $idf_libs_configs"
219219
rm -rf build sdkconfig
220-
COMPONENTS_SUBSET=full idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$idf_libs_configs" idf-libs
220+
idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$idf_libs_configs" idf-libs
221221
if [ $? -ne 0 ]; then exit 1; fi
222222

223223
# Build Bootloaders
@@ -229,7 +229,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
229229

230230
echo "* Build BootLoader: $bootloader_configs"
231231
rm -rf build sdkconfig
232-
COMPONENTS_SUBSET=none idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$bootloader_configs" copy-bootloader
232+
idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$bootloader_configs" copy-bootloader
233233
if [ $? -ne 0 ]; then exit 1; fi
234234
done
235235

@@ -242,7 +242,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
242242

243243
echo "* Build Memory Variant: $mem_configs"
244244
rm -rf build sdkconfig
245-
COMPONENTS_SUBSET=none idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$mem_configs" mem-variant
245+
idf.py -DIDF_TARGET="$target" -DSDKCONFIG_DEFAULTS="$mem_configs" mem-variant
246246
if [ $? -ne 0 ]; then exit 1; fi
247247
done
248248
done

0 commit comments

Comments
 (0)