[Lldb-commits] [lldb] [llvm] [CI] monolithic-linux improvements (PR #135499)

Matheus Izvekov via lldb-commits lldb-commits at lists.llvm.org
Sun Apr 13 09:17:35 PDT 2025


================
@@ -130,12 +132,11 @@ def _add_dependencies(projects: Set[str]) -> Set[str]:
 def _compute_projects_to_test(modified_projects: Set[str], platform: str) -> Set[str]:
     projects_to_test = set()
     for modified_project in modified_projects:
-        # Skip all projects where we cannot run tests.
-        if modified_project not in PROJECT_CHECK_TARGETS:
-            continue
         if modified_project in RUNTIMES:
             continue
-        projects_to_test.add(modified_project)
+        # Skip all projects where we cannot run tests.
----------------
mizvekov wrote:

I added a test for '.ci'.

https://github.com/llvm/llvm-project/pull/135499


More information about the lldb-commits mailing list