update doc, skip board_test in esp32s2 ci

This commit is contained in:
hathach
2021-03-04 12:35:43 +07:00
parent a655a4169e
commit 4c31a29ff0
2 changed files with 6 additions and 4 deletions

View File

@@ -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()