Skip to content

Commit 9c6c8b5

Browse files
committed
Don't build boards for docs changes
1 parent 5fe90ec commit 9c6c8b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/ci_set_matrix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ def set_boards_to_build(build_all):
9696
if p in IGNORE:
9797
continue
9898

99-
# Boards don't run tests so ignore those as well.
100-
if p.startswith("tests"):
99+
# Boards don't run tests or docs so ignore those as well.
100+
if p.startswith("tests") or p.startswith("docs"):
101101
continue
102102

103103
# As a (nearly) last resort, for some certain files, we compute the settings from the

0 commit comments

Comments
 (0)