[libc++][CI] Improves bootstrap build output.

Use the same arguments as other builds. This gives better output to
validate what the CI did.

Reviewed By: #libc, ldionne

Differential Revision: https://reviews.llvm.org/D158860
This commit is contained in:
Mark de Wever 2023-08-25 18:40:48 +02:00
parent b084d10c28
commit 8271713981

View File

@ -370,13 +370,14 @@ bootstrapping-build)
-DLLVM_RUNTIME_TARGETS="$(${CXX} --print-target-triple)" \
-DLLVM_TARGETS_TO_BUILD="host" \
-DRUNTIMES_BUILD_ALLOW_DARWIN=ON \
-DLLVM_ENABLE_ASSERTIONS=ON
-DLLVM_ENABLE_ASSERTIONS=ON \
-DLLVM_LIT_ARGS="-v --show-unsupported --xunit-xml-output test-results.xml --timeout=1500 --time-tests"
echo "+++ Running the libc++ and libc++abi tests"
${NINJA} -C "${BUILD_DIR}" check-runtimes
${NINJA} -vC "${BUILD_DIR}" check-runtimes
echo "--- Installing libc++ and libc++abi to a fake location"
${NINJA} -C "${BUILD_DIR}" install-runtimes
${NINJA} -vC "${BUILD_DIR}" install-runtimes
ccache -s
;;