Skip to content

Commit 765f1d3

Browse files
committed
fix(arduino_cli): missing failed board count
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent d464e07 commit 765f1d3

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
@@ -552,7 +552,8 @@ def check_status(status, build_conf, boardKo):
552552
nb_build_passed += 1
553553
else:
554554
result = "\033[31merror\033[0m"
555-
555+
boardKo.append(build_conf[0])
556+
nb_build_failed += 1
556557
print(
557558
f"{build_format_result}".format(
558559
f"{build_conf[1]}/{build_conf[2]}",

0 commit comments

Comments
 (0)