From eecd7d48c22d39a0cb46f88446d06c00120674a4 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Wed, 12 Nov 2025 14:32:48 +0000 Subject: [PATCH] [CI] Fix misspelled runtimes_targets variable This was preventing check-compiler-rt from actually running when we touched a project that was supposed to cause compiler-rt to be tested. --- .ci/monolithic-windows.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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