Skip to content

Commit

Permalink
[CI] Hotfix: CI runs failing due to target escaping (#86897)
Browse files Browse the repository at this point in the history
My patch #86877 contains a mistake.
Should have read the comment.
Recent buildkite runs fail because of this, so it is a bit urgent.
  • Loading branch information
marcauberer committed Mar 28, 2024
1 parent 17ab9e6 commit 64f0410
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/monolithic-linux.sh
Expand Up @@ -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}
2 changes: 1 addition & 1 deletion .ci/monolithic-windows.sh
Expand Up @@ -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}

0 comments on commit 64f0410

Please sign in to comment.