Skip to content

Commit 6afe732

Browse files
committed
changes in ports/unix don't trigger any board builds
1 parent 167665f commit 6afe732

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/ci_set_matrix.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ def set_boards_to_build(build_all):
7676
port_matches = port_pattern.search(p)
7777
if port_matches:
7878
port = port_matches.group(1)
79-
boards_to_build.update(port_to_boards[port])
79+
if port != "unix":
80+
boards_to_build.update(port_to_boards[port])
8081
continue
8182

8283
# Otherwise build it all

0 commit comments

Comments
 (0)