[libcxx-commits] [libcxx] [libc++] Silence CMake's install messages in the CI (PR #128872)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Feb 26 04:46:27 PST 2025
https://github.com/philnik777 created https://github.com/llvm/llvm-project/pull/128872
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.
>From 115a689c2f75e1754a2d3998461976b3583f018e Mon Sep 17 00:00:00 2001
From: Nikolas Klauser <nikolasklauser at berlin.de>
Date: Wed, 26 Feb 2025 13:44:00 +0100
Subject: [PATCH] [libc++] Silence CMake's install messages in the CI
---
libcxx/utils/ci/run-buildbot | 1 +
1 file changed, 1 insertion(+)
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" \
"${@}"
}
More information about the libcxx-commits
mailing list