Skip to content

Commit c3b2f44

Browse files
committed
ci: testplan: do not deal with arch changes
This is generating lots of duplication and unnecessary builds when multiple arches are being changed. Let's stick to basic coverage which should be enough for PRs. Signed-off-by: Anas Nashif <[email protected]>
1 parent b8360ad commit c3b2f44

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/ci/test_plan.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ def process(self):
123123
self.find_tags()
124124
self.find_tests()
125125
if not self.platforms:
126-
self.find_archs()
126+
# disable for now, this is generating lots of churn when changing
127+
# architectures that is otherwise covered elsewhere.
128+
#self.find_archs()
127129
self.find_boards()
128130
else:
129131
for file in self.modified_files:

0 commit comments

Comments
 (0)