mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 08:06:40 +00:00
[CI] Run pre-merge build with -k 0 placed after "${BUILD_DIR}" (#84846)
#84828 added `-k 0` to pre-merge CI so that if one job fails the others would continue building. This pull request fixes the location of `-k 0` in the ninja command line. Resolves #84842 and #83371
This commit is contained in:
parent
6397f223c4
commit
a950c06d98
@ -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 -k 0 "${BUILD_DIR}" ${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 -k 0 "${BUILD_DIR}" ${targets}
|
||||
ninja -C "${BUILD_DIR}" -k 0 ${targets}
|
||||
|
Loading…
x
Reference in New Issue
Block a user