summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-03-04 12:35:43 +0700
committerhathach <[email protected]>2021-03-04 12:35:43 +0700
commit4c31a29ff05a9f08afb6932eb3089bb154d59106 (patch)
treec9640337fa99ad73848f02c3e5e89a73a08bbfe8 /tools
parenta655a4169e4a7be4b547f012643a86d198d46b1f (diff)
update doc, skip board_test in esp32s2 ci
Diffstat (limited to 'tools')
-rw-r--r--tools/build_esp32s2.py4
1 files changed, 2 insertions, 2 deletions
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()