From c3b2f44173350fafd494950a1467d368d7977824 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 19 Nov 2024 18:24:25 -0500 Subject: [PATCH] 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 --- scripts/ci/test_plan.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/ci/test_plan.py b/scripts/ci/test_plan.py index 14fe54fdd35..9e6c5b66dec 100755 --- a/scripts/ci/test_plan.py +++ b/scripts/ci/test_plan.py @@ -123,7 +123,9 @@ class Filters: self.find_tags() self.find_tests() if not self.platforms: - self.find_archs() + # disable for now, this is generating lots of churn when changing + # architectures that is otherwise covered elsewhere. + #self.find_archs() self.find_boards() else: for file in self.modified_files: