[llvm] [CI] Hotfix: CI runs failing due to target escaping (PR #86897)

Marc Auberer via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 27 18:00:37 PDT 2024


https://github.com/marcauberer created https://github.com/llvm/llvm-project/pull/86897

My patch #86877 contains a mistake.
Should have read the comment.
Recent buildkite runs fail because of this, so it is a bit urgent.

>From be56b42e47f3e4fe911f1be69424df3b9a2e7d02 Mon Sep 17 00:00:00 2001
From: Marc Auberer <marc.auberer at chillibits.com>
Date: Thu, 28 Mar 2024 01:57:36 +0100
Subject: [PATCH] [CI] Hotfix: CI runs failing because of escaped targets

---
 .ci/monolithic-linux.sh   | 2 +-
 .ci/monolithic-windows.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.ci/monolithic-linux.sh b/.ci/monolithic-linux.sh
index 35f1aacb4985f0..b347c443da677f 100755
--- a/.ci/monolithic-linux.sh
+++ b/.ci/monolithic-linux.sh
@@ -54,4 +54,4 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
 
 echo "--- ninja"
 # Targets are not escaped as they are passed as separate arguments.
-ninja -C "${BUILD_DIR}" -k 0 "${targets}"
+ninja -C "${BUILD_DIR}" -k 0 ${targets}
diff --git a/.ci/monolithic-windows.sh b/.ci/monolithic-windows.sh
index f84c0966704e73..4fd88ea81c84a8 100755
--- a/.ci/monolithic-windows.sh
+++ b/.ci/monolithic-windows.sh
@@ -62,4 +62,4 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
 
 echo "--- ninja"
 # Targets are not escaped as they are passed as separate arguments.
-ninja -C "${BUILD_DIR}" -k 0 "${targets}"
+ninja -C "${BUILD_DIR}" -k 0 ${targets}



More information about the llvm-commits mailing list