diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2019-09-30 12:09:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-30 12:09:29 -0700 |
| commit | 060e81ded0097a6db44dc0746befddbb1d2f061e (patch) | |
| tree | 44130a2a7e8814540fe241265481402023233fc3 /tools | |
| parent | 33af5a913eb023311bf105b72ca112577e368df7 (diff) | |
Fail when boards are missing too
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/ci_new_boards_check.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/ci_new_boards_check.py b/tools/ci_new_boards_check.py index 7ad8af842..8bb8876fb 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) |
