[llvm] [CI] Fix misspelled runtimes_targets variable (PR #167696)

via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 12 06:35:50 PST 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-infrastructure

Author: Aiden Grossman (boomanaiden154)

<details>
<summary>Changes</summary>

This was preventing check-compiler-rt from actually running when we touched a project that was supposed to cause compiler-rt to be tested.

---
Full diff: https://github.com/llvm/llvm-project/pull/167696.diff


1 Files Affected:

- (modified) .ci/monolithic-windows.sh (+1-1) 


``````````diff
diff --git a/.ci/monolithic-windows.sh b/.ci/monolithic-windows.sh
index beaed71f49f65..7b926b87f3623 100755
--- a/.ci/monolithic-windows.sh
+++ b/.ci/monolithic-windows.sh
@@ -55,7 +55,7 @@ start-group "ninja"
 ninja -C "${BUILD_DIR}" -k 0 ${targets} |& tee ninja.log
 cp ${BUILD_DIR}/.ninja_log ninja.ninja_log
 
-if [[ "${runtime_targets}" != "" ]]; then
+if [[ "${runtimes_targets}" != "" ]]; then
   start-group "ninja runtimes"
   
   ninja -C "${BUILD_DIR}" -k 0 ${runtimes_targets} |& tee ninja_runtimes.log

``````````

</details>


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


More information about the llvm-commits mailing list