Skip to content

Commit 98a845c

Browse files
authored
[ci] builkite don't escape windows targets (#66192)
ninja takes every target as a separate argument
1 parent f3fbea2 commit 98a845c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.ci/monolithic-linux.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,5 @@ cmake -S ${MONOREPO_ROOT}/llvm -B ${BUILD_DIR} \
5252
-D LLVM_CCACHE_BUILD=ON
5353

5454
echo "--- ninja"
55-
ninja -C ${BUILD_DIR} ${targets}
55+
# Targets are not escaped as they are passed as separate arguments.
56+
ninja -C "${BUILD_DIR}" ${targets}

.ci/monolithic-windows.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,5 @@ cmake -S ${MONOREPO_ROOT}/llvm -B ${BUILD_DIR} \
5151
-D CMAKE_CXX_COMPILER_LAUNCHER=sccache
5252

5353
echo "--- ninja"
54-
ninja -C "${BUILD_DIR}" "${targets}"
54+
# Targets are not escaped as they are passed as separate arguments.
55+
ninja -C "${BUILD_DIR}" ${targets}

0 commit comments

Comments
 (0)