From 4c31a29ff05a9f08afb6932eb3089bb154d59106 Mon Sep 17 00:00:00 2001 From: hathach Date: Thu, 4 Mar 2021 12:35:43 +0700 Subject: [PATCH] update doc, skip board_test in esp32s2 ci --- docs/boards.md | 6 ++++-- tools/build_esp32s2.py | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/boards.md b/docs/boards.md index bff3f32be..275143118 100644 --- a/docs/boards.md +++ b/docs/boards.md @@ -94,9 +94,11 @@ This code base already had supported for a handful of following boards (sorted a - [LPCXpresso 11u68](https://www.nxp.com/support/developer-resources/evaluation-and-development-boards/lpcxpresso-boards/lpcxpresso-board-for-lpc11u68:OM13058) - [LPCXpresso 1347](https://www.nxp.com/support/developer-resources/evaluation-and-development-boards/lpcxpresso-boards/lpcxpresso-board-for-lpc1347:OM13045) - [LPCXpresso 1769](https://www.nxp.com/support/developer-resources/evaluation-and-development-boards/lpcxpresso-boards/lpcxpresso-board-for-lpc1769:OM13000) +- [LPCXpresso18S37 Development Board](https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/lpc4000-cortex-m4/lpcxpresso18s37-development-board:OM13076) - [LPCXpresso 51U68](https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/lpcxpresso51u68-for-the-lpc51u68-mcus:OM40005) - [LPCXpresso 54114](https://www.nxp.com/design/microcontrollers-developer-resources/lpcxpresso-boards/lpcxpresso54114-board:OM13089) -- [LPCXpresso 55s69 EVK](https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/lpc5500-cortex-m33/lpcxpresso55s69-development-board:LPC55S69-EVK) +- [LPCXpresso 55s28 EVK](https://www.nxp.com/design/software/development-software/lpcxpresso55s28-development-board:LPC55S28-EVK) +- [LPCXpresso 55s69 EVK](https://www.nxp.com/design/development-boards/lpcxpresso-boards/lpcxpresso55s69-development-board:LPC55S69-EVK) - [NGX LPC4330-Xplorer](https://www.nxp.com/design/designs/lpc4330-xplorer-board:OM13027) - [Double M33 Express](https://www.crowdsupply.com/steiert-solutions/double-m33-express) @@ -104,7 +106,7 @@ This code base already had supported for a handful of following boards (sorted a - [Adafruit Feather RP2040](https://www.adafruit.com/product/4884) - [Adafruit ItsyBitsy RP2040](https://www.adafruit.com/product/4888) -- Adafruit QT RP2040 +- [Adafruit QT Py RP2040](https://www.adafruit.com/product/4900) - [Raspberry Pi Pico](https://www.raspberrypi.org/products/raspberry-pi-pico/) ### Sony diff --git a/tools/build_esp32s2.py b/tools/build_esp32s2.py index 6580b6562..0ef05023c 100644 --- a/tools/build_esp32s2.py +++ b/tools/build_esp32s2.py @@ -27,8 +27,8 @@ def filter_with_input(mylist): # Build all examples if not specified all_examples = [] for entry in os.scandir("examples/device"): - # Only includes example with CMakeLists.txt for esp32s - if entry.is_dir() and os.path.exists(entry.path + "/sdkconfig.defaults"): + # Only includes example with CMakeLists.txt for esp32s, and skip board_test to speed up ci + if entry.is_dir() and os.path.exists(entry.path + "/sdkconfig.defaults") and entry.name != 'board_test': all_examples.append(entry.name) filter_with_input(all_examples) all_examples.sort()