Skip to content

Commit 2d16573

Browse files
authored
Remove conditional inclusion of builder specified components
1 parent f4649a1 commit 2d16573

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
@@ -151,7 +151,7 @@ if [ "$BUILD_TYPE" != "all" ]; then
151151

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

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

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

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

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

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

0 commit comments

Comments
 (0)