Skip to content

Commit c82ae8d

Browse files
committed
Test commit
1 parent d830f6a commit c82ae8d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: CI/build/arduino-cli.py

+6
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,9 @@ def find_board():
451451
[arduino_cli, "board", "listall", "--format", "json"],
452452
stderr=subprocess.DEVNULL,
453453
).decode("utf-8")
454+
print("######### board listall ###########")
455+
print(output)
456+
print("###################################")
454457
boards_list = json.loads(output)
455458
if boards_list is not None:
456459
for board in boards_list["boards"]:
@@ -471,6 +474,9 @@ def find_board():
471474
[arduino_cli, "board", "details", "--format", "json", fqbn],
472475
stderr=subprocess.DEVNULL,
473476
).decode("utf-8")
477+
print("######### board details {} ###########".format(fqbn))
478+
print(output)
479+
print("######################################")
474480
board_detail = json.loads(output)
475481
if board_detail is not None:
476482
if "config_options" not in board_detail:

0 commit comments

Comments
 (0)