[llvm] [CI] monolithic-linux improvements (PR #135499)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Sun Apr 13 03:33:49 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.
----------------
boomanaiden154 wrote:
Why is this getting moved around if it doesn't cause test differences in `compute_projects_tests.py`?
https://github.com/llvm/llvm-project/pull/135499
More information about the llvm-commits
mailing list