Skip net and freertos examples

This commit is contained in:
Scott Shawcroft
2022-01-05 14:33:24 -08:00
parent 84e2df51be
commit 4fe0a30ec7
8 changed files with 7 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ all_examples.sort()
# If family are not specified in arguments, build all
all_families = []
for entry in os.scandir("hw/bsp"):
if entry.is_dir() and os.path.isdir(entry.path + "/boards") and entry.name != "esp32s2" and entry.name != "esp32s3":
if entry.is_dir() and os.path.isdir(entry.path + "/boards") and entry.name not in ("esp32s2", "esp32s3"):
all_families.append(entry.name)
filter_with_input(all_families)