From 81154b4ee6f611f4b255f9756b45d17a5438d07d Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Fri, 14 Oct 2022 11:32:58 -0500 Subject: [PATCH] Revert "don't build other ports due to common-hal changes" This reverts commit 91985cef7e9666d1f60ef6cef7f66c74896744d0. --- tools/ci_set_matrix.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/ci_set_matrix.py b/tools/ci_set_matrix.py index e165c23c27..0ae6010ac9 100644 --- a/tools/ci_set_matrix.py +++ b/tools/ci_set_matrix.py @@ -53,7 +53,7 @@ def set_output(name, value): with open(os.environ["GITHUB_OUTPUT"], "at") as f: print(f"{name}={value}", file=f) 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): @@ -80,7 +80,9 @@ def set_boards_to_build(build_all): boards_to_build = set() board_pattern = re.compile(r"^ports/[^/]+/boards/([^/]+)/") 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: # See if it is board specific board_matches = board_pattern.search(p)