[llvm] [CI] Add Python Script for Computing Projects/Runtimes to Test (PR #132634)

via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 23 15:47:52 PDT 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {darker}-->


:warning: Python code formatter, darker found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
darker --check --diff -r dfa665f19c52d98b8d833a8e9073427ba5641b19...a10f6608f82334c6b0d78d68087acbc61cf659d6 .ci/compute_projects.py .ci/compute_projects_test.py
``````````

</details>

<details>
<summary>
View the diff from darker here.
</summary>

``````````diff
--- compute_projects.py	2025-03-23 22:43:37.000000 +0000
+++ compute_projects.py	2025-03-23 22:47:27.131869 +0000
@@ -181,6 +181,6 @@
     current_platform = platform.system()
     if len(sys.argv) == 2:
         current_platform = sys.argv[1]
     env_variables = get_env_variables(sys.stdin.readlines(), current_platform)
     for env_variable in env_variables:
-        print(f"{env_variable}=\"{env_variables[env_variable]}\"")
+        print(f'{env_variable}="{env_variables[env_variable]}"')
--- compute_projects_test.py	2025-03-23 22:43:37.000000 +0000
+++ compute_projects_test.py	2025-03-23 22:47:27.183552 +0000
@@ -46,11 +46,11 @@
         )
         self.assertEqual(
             env_variables["runtimes_check_targets"],
             "check-cxx check-cxxabi check-unwind",
         )
-    
+
     def test_llvm_mac(self):
         env_variables = compute_projects.get_env_variables(
             ["llvm/CMakeLists.txt"], "Darwin"
         )
         self.assertEqual(

``````````

</details>


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


More information about the llvm-commits mailing list