We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 568c281 + c3a90e3 commit 05e0734Copy full SHA for 05e0734
tools/ci_set_matrix.py
@@ -34,6 +34,11 @@
34
"stm": "arm",
35
}
36
37
+IGNORE = [
38
+ "tools/ci_set_matrix.py",
39
+ "tools/ci_check_duplicate_usb_vid_pid.py",
40
+]
41
+
42
changed_files = {}
43
try:
44
changed_files = json.loads(os.environ["CHANGED_FILES"])
@@ -81,6 +86,14 @@ def set_boards_to_build(build_all):
81
86
boards_to_build.update(port_to_boards[port])
82
87
continue
83
88
89
+ # Check the ignore list to see if the file isn't used on board builds.
90
+ if p in IGNORE:
91
+ continue
92
93
+ # Boards don't run tests so ignore those as well.
94
+ if p.startswith("tests"):
95
96
84
97
# Otherwise build it all
85
98
boards_to_build = all_board_ids
99
break
0 commit comments