File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 12
12
base branch while pushes will compare to the current ref. We override this
13
13
for the adafruit/circuitpython repo so we build all docs/boards for pushes.
14
14
15
+ When making changes to the script it is useful to manually test it.
16
+ You can for instance run
17
+ ```shell
18
+ tools/ci_set_matrix ports/raspberrypi/common-hal/socket/SSLSocket.c
19
+ ```
20
+ and (at the time this comment was written) get a series of messages indicating
21
+ that only the single board raspberry_pi_pico_w would be built.
15
22
"""
16
23
17
24
import re
@@ -112,7 +119,7 @@ def get_settings(board):
112
119
board_pattern = re .compile (r"^ports/[^/]+/boards/([^/]+)/" )
113
120
port_pattern = re .compile (r"^ports/([^/]+)/" )
114
121
module_pattern = re .compile (
115
- r"^(ports/[^/]+/common-hal|shared-bindings|shared-module)/([^/]+)/"
122
+ r"^(ports/[^/]+/(?: common-hal|bindings) |shared-bindings|shared-module)/([^/]+)/"
116
123
)
117
124
for p in changed_files :
118
125
# See if it is board specific
You can’t perform that action at this time.
0 commit comments