mirror of
https://github.com/intel/llvm.git
synced 2026-01-25 19:44:38 +08:00
[CI] Hotfix: CI runs failing due to target escaping (#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.
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user