[libcxx-commits] [libcxx] [libc++] Silence CMake's install messages in the CI (PR #128872)

via libcxx-commits libcxx-commits at lists.llvm.org
Wed Feb 26 05:15:12 PST 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libcxx

Author: Nikolas Klauser (philnik777)

<details>
<summary>Changes</summary>

Currently, there are a ton of `-- Installing:` and `-- Up-to-date:` messages in the CI log, which just clutter the output. This disables these messages to significantly shorten the CI logs, making them much faster to load and easier to read.


---
Full diff: https://github.com/llvm/llvm-project/pull/128872.diff


1 Files Affected:

- (modified) libcxx/utils/ci/run-buildbot (+1) 


``````````diff
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 0ee5bf3e71f59..8a0d4557b56b2 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -136,6 +136,7 @@ function generate-cmake-base() {
           -DLIBCXX_ENABLE_WERROR=YES \
           -DLIBCXXABI_ENABLE_WERROR=YES \
           -DLIBUNWIND_ENABLE_WERROR=YES \
+          -DCMAKE_INSTALL_MESSAGE=NEVER \
           -DLLVM_LIT_ARGS="-sv --xunit-xml-output test-results.xml --timeout=1500 --time-tests" \
           "${@}"
 }

``````````

</details>


https://github.com/llvm/llvm-project/pull/128872


More information about the libcxx-commits mailing list