Commit b704ff66 authored by Matt Trentini's avatar Matt Trentini Committed by Damien George

esp32/boards: Remove all IDF3 variants.

IDF 3 builds are very old now (it seems like the last successful builds are
from 2021), and the current IDF 5 is stable.  So remove IDF 3 variants.
Signed-off-by: default avatarMatt Trentini <matt.trentini@gmail.com>
parent ad382997
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
"thumbnail": "", "thumbnail": "",
"url": "https://www.espressif.com/en/products/modules", "url": "https://www.espressif.com/en/products/modules",
"variants": { "variants": {
"IDF3": "Compiled with IDF 3.x",
"D2WD": "ESP32 D2WD", "D2WD": "ESP32 D2WD",
"SPIRAM": "Support for SPIRAM / WROVER", "SPIRAM": "Support for SPIRAM / WROVER",
"UNICORE": "ESP32 Unicore", "UNICORE": "ESP32 Unicore",
......
...@@ -22,8 +22,5 @@ ...@@ -22,8 +22,5 @@
"product": "TinyPICO", "product": "TinyPICO",
"thumbnail": "", "thumbnail": "",
"url": "https://www.tinypico.com/", "url": "https://www.tinypico.com/",
"variants": {
"IDF3": "Compiled with IDF 3.x"
},
"vendor": "Unexpected Maker" "vendor": "Unexpected Maker"
} }
...@@ -55,10 +55,8 @@ function build_board { ...@@ -55,10 +55,8 @@ function build_board {
$MICROPY_AUTOBUILD_MAKE BOARD=$board BUILD=$build_dir && copy_artefacts $dest_dir $descr $fw_tag $build_dir $@ $MICROPY_AUTOBUILD_MAKE BOARD=$board BUILD=$build_dir && copy_artefacts $dest_dir $descr $fw_tag $build_dir $@
rm -rf $build_dir rm -rf $build_dir
# Query variants from board.json and build them. Ignore the special "IDF3" # Query variants from board.json and build them.
# variant for ESP32 boards (this allows the downloads page to still have for variant in `cat $board_json | python3 -c "import json,sys; print(' '.join(json.load(sys.stdin).get('variants', {}).keys()))"`; do
# the idf3 files for older releases that used to be explicitly built).
for variant in `cat $board_json | python3 -c "import json,sys; print(' '.join(v for v in json.load(sys.stdin).get('variants', {}).keys() if v != 'IDF3'))"`; do
local variant_build_dir=$build_dir-$variant local variant_build_dir=$build_dir-$variant
echo "building variant $descr $board $variant" echo "building variant $descr $board $variant"
$MICROPY_AUTOBUILD_MAKE BOARD=$board BOARD_VARIANT=$variant BUILD=$variant_build_dir && copy_artefacts $dest_dir $descr-$variant $fw_tag $variant_build_dir $@ $MICROPY_AUTOBUILD_MAKE BOARD=$board BOARD_VARIANT=$variant BUILD=$variant_build_dir && copy_artefacts $dest_dir $descr-$variant $fw_tag $variant_build_dir $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment