We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 167665f commit 6afe732Copy full SHA for 6afe732
tools/ci_set_matrix.py
@@ -76,7 +76,8 @@ def set_boards_to_build(build_all):
76
port_matches = port_pattern.search(p)
77
if port_matches:
78
port = port_matches.group(1)
79
- boards_to_build.update(port_to_boards[port])
+ if port != "unix":
80
+ boards_to_build.update(port_to_boards[port])
81
continue
82
83
# Otherwise build it all
0 commit comments