From 060e81ded0097a6db44dc0746befddbb1d2f061e Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Mon, 30 Sep 2019 12:09:29 -0700 Subject: [PATCH] Fail when boards are missing too --- tools/ci_new_boards_check.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ci_new_boards_check.py b/tools/ci_new_boards_check.py index 7ad8af8424..8bb8876fbc 100644 --- a/tools/ci_new_boards_check.py +++ b/tools/ci_new_boards_check.py @@ -42,6 +42,7 @@ ci_boards.sort() missing_boards = set(info_boards) - set(ci_boards) if missing_boards: + ok = False print('Boards missing in {}:'.format(workflow_file)) for board in missing_boards: print(board)