Skip to content

Commit 247ce64

Browse files
committed
ci(arduino_cli): skip find board when sketch is required
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent 47253db commit 247ce64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CI/build/arduino-cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,8 @@ def main():
892892
deleteFolder(root_output_dir)
893893

894894
load_core_config()
895-
find_board()
895+
if args.list != "sketch":
896+
find_board()
896897
if args.list == "board":
897898
for board in board_fqbn:
898899
print(board)

0 commit comments

Comments
 (0)