[llvm] [ci] add all projects as dependencies of ci (PR #136153)

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 17 23:45:55 PDT 2025


================
@@ -188,6 +188,19 @@ def test_exclude_gn(self):
         self.assertEqual(env_variables["runtimes_to_build"], "")
         self.assertEqual(env_variables["runtimes_check_targets"], "")
 
+     def test_ci(self):
+        env_variables = compute_projects.get_env_variables(
+            [".ci/compute_projects.py"], "Linux"
+        )
+        self.assertEqual(env_variables["projects_to_build"],
+                         "clang;lld;llvm;lldb")
+        self.assertEqual(env_variables["project_check_targets"], "check-clang
+                         check-lld check-llvm check-lldb")
----------------
boomanaiden154 wrote:

I don't think you can wrap multi-line string literals like this in python? Either way, it is inconsistent with how it is done elsewhere in LLVM.

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


More information about the llvm-commits mailing list