Skip to content

Commit c5a993c

Browse files
committed
[libc++] Silence CMake's install messages in the CI
1 parent 7842954 commit c5a993c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libcxx/utils/ci/run-buildbot

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ function clean() {
127127

128128
function generate-cmake-base() {
129129
step "Generating CMake"
130+
131+
# We can remove -DCMAKE_INSTALL_MESSAGE=NEVER once https://gitlab.kitware.com/cmake/cmake/-/issues/26085 is fixed.
130132
${CMAKE} \
131133
-S "${MONOREPO_ROOT}/runtimes" \
132134
-B "${BUILD_DIR}" \
@@ -136,6 +138,7 @@ function generate-cmake-base() {
136138
-DLIBCXX_ENABLE_WERROR=YES \
137139
-DLIBCXXABI_ENABLE_WERROR=YES \
138140
-DLIBUNWIND_ENABLE_WERROR=YES \
141+
-DCMAKE_INSTALL_MESSAGE=NEVER \
139142
-DLLVM_LIT_ARGS="-sv --xunit-xml-output test-results.xml --timeout=1500 --time-tests" \
140143
"${@}"
141144
}

0 commit comments

Comments
 (0)