8000 esp32/boards: Merge manifest_release modules into standard manifest. · lowfatcode/micropython@730e975 · GitHub
[go: up one dir, main page]

Skip to content

Commit 730e975

Browse files
committed
esp32/boards: Merge manifest_release modules into standard manifest.
Having two separate manifests is confusing. It's simpler to have the daily builds use the same configuration as the stable, release builds. Signed-off-by: Damien George <damien@micropython.org>
1 parent 9a826e0 commit 730e975

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

ports/esp32/boards/manifest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@
66
include("$(MPY_DIR)/extmod/uasyncio/manifest.py")
77
include("$(MPY_DIR)/extmod/webrepl/manifest.py")
88
include("$(MPY_DIR)/drivers/neopixel/manifest.py")
9+
10+
# Freeze some micropython-lib modules.
11+
freeze("$(MPY_LIB_DIR)/python-ecosys/urequests", "urequests.py")
12+
freeze("$(MPY_LIB_DIR)/micropython/upysh", "upysh.py")
13+
freeze("$(MPY_LIB_DIR)/micropython/umqtt.simple", "umqtt/simple.py")
14+
freeze("$(MPY_LIB_DIR)/micropython/umqtt.robust", "umqtt/robust.py")

ports/esp32/boards/manifest_release.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

tools/autobuild/build-boards.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,7 @@ function build_esp32_boards {
8383
if idf.py --version | grep -q v4.2; then
8484
if [ $mcu = esp32 ]; then
8585
# build standard esp32-based boards with IDF v4.2
86-
if echo $board_json | grep -q GENERIC; then
87-
# traditionally, GENERIC and GENERIC_SPIRAM boards used manifest_release.py
88-
MICROPY_AUTOBUILD_MAKE="$MICROPY_AUTOBUILD_MAKE FROZEN_MANIFEST=$(pwd)/boards/manifest_release.py" build_board $board_json $fw_tag $dest_dir bin elf map
89-
else
90-
build_board $board_json $fw_tag $dest_dir bin elf map
91-
fi
86+
build_board $board_json $fw_tag $dest_dir bin elf map
9287
fi
9388
else
9489
if [ $mcu != esp32 ]; then

0 commit comments

Comments
 (0)
0