File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def set_output(name, value):
53
53
with open (os .environ ["GITHUB_OUTPUT" ], "at" ) as f :
54
54
print (f"{ name } ={ value } " , file = f )
55
55
else :
56
- print ("Would set GitHub actions output {name} to '{value}'" )
56
+ print (f "Would set GitHub actions output { name } to '{ value } '" )
57
57
58
58
59
59
def set_boards_to_build (build_all ):
@@ -80,9 +80,7 @@ def set_boards_to_build(build_all):
80
80
boards_to_build = set ()
81
81
board_pattern = re .compile (r"^ports/[^/]+/boards/([^/]+)/" )
82
82
port_pattern = re .compile (r"^ports/([^/]+)/" )
83
- module_pattern = re .compile (
84
- r"^(ports/[^/]+/common-hal|shared-bindings|shared-module)/([^/]+)/"
85
- )
83
+ module_pattern = re .compile (r"^(ports/[^/]+/shared-bindings|shared-module)/([^/]+)/" )
86
84
for p in changed_files :
87
85
# See if it is board specific
88
86
board_matches = board_pattern .search (p )
You can’t perform that action at this time.
0 commit comments