changes in ports/unix don't trigger any board builds

This commit is contained in:
Jeff Epler 2021-11-12 13:09:33 -06:00
parent 167665f8b7
commit 6afe732151
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE

View File

@ -76,7 +76,8 @@ def set_boards_to_build(build_all):
port_matches = port_pattern.search(p)
if port_matches:
port = port_matches.group(1)
boards_to_build.update(port_to_boards[port])
if port != "unix":
boards_to_build.update(port_to_boards[port])
continue
# Otherwise build it all