Skip to content

Commit 36c64cc

Browse files
committed
ci(generic_board_to_skip): remove family argument
Useless due to output formatting. Signed-off-by: Frederic Pillon <[email protected]>
1 parent 9b750b3 commit 36c64cc

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Diff for: CI/build/generic_boards_to_skip.py

-8
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,13 @@
1414
description="Generate list of generic boards to skip for ci core config"
1515
)
1616

17-
parser.add_argument("-f", "--family", metavar="pattern", help="Family name to generate")
18-
19-
args = parser.parse_args()
20-
2117

2218
def main():
23-
if args.family:
24-
filtered_family = args.family.upper()
2519
# Get mcu_family directories
2620
mcu_families = sorted(variant_path.glob("STM32*/"))
2721
boards_list = []
2822
# Parse boards from all
2923
for mcu_family in mcu_families:
30-
if args.family and filtered_family not in str(mcu_family):
31-
continue
3224
# Search all directory with ldscript.ld
3325
variants_list = sorted(mcu_family.glob("**/ldscript.ld"))
3426
for variant in variants_list:

0 commit comments

Comments
 (0)