[llvm] [CI][Github] Enable CIR CI build and test (PR #147430)

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 11 10:28:06 PDT 2025


================
@@ -267,6 +284,12 @@ def get_env_variables(modified_files: list[str], platform: str) -> Set[str]:
     runtimes_check_targets_needs_reconfig = _compute_project_check_targets(
         runtimes_to_test_needs_reconfig
     )
+
+    # Check if both clang and mlir are in projects_to_build to enable CIR
+    enable_cir = (
+        "ON" if "clang" in projects_to_build and "mlir" in projects_to_build else "OFF"
----------------
boomanaiden154 wrote:

This is a bit weird. Why aren't we just checking if `CIR` is in modified projects?

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


More information about the llvm-commits mailing list