Revert "don't build other ports due to common-hal changes"

This reverts commit 91985cef7e.
This commit is contained in:
Jeff Epler 2022-10-14 11:32:58 -05:00
parent b4c2ef13e4
commit 81154b4ee6
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE

View File

@ -53,7 +53,7 @@ def set_output(name, value):
with open(os.environ["GITHUB_OUTPUT"], "at") as f: with open(os.environ["GITHUB_OUTPUT"], "at") as f:
print(f"{name}={value}", file=f) print(f"{name}={value}", file=f)
else: else:
print(f"Would set GitHub actions output {name} to '{value}'") print("Would set GitHub actions output {name} to '{value}'")
def set_boards_to_build(build_all): def set_boards_to_build(build_all):
@ -80,7 +80,9 @@ def set_boards_to_build(build_all):
boards_to_build = set() boards_to_build = set()
board_pattern = re.compile(r"^ports/[^/]+/boards/([^/]+)/") board_pattern = re.compile(r"^ports/[^/]+/boards/([^/]+)/")
port_pattern = re.compile(r"^ports/([^/]+)/") port_pattern = re.compile(r"^ports/([^/]+)/")
module_pattern = re.compile(r"^(ports/[^/]+/shared-bindings|shared-module)/([^/]+)/") module_pattern = re.compile(
r"^(ports/[^/]+/common-hal|shared-bindings|shared-module)/([^/]+)/"
)
for p in changed_files: for p in changed_files:
# See if it is board specific # See if it is board specific
board_matches = board_pattern.search(p) board_matches = board_pattern.search(p)