[libcxx-commits] [PATCH] D148267: [libcxx] [ci] Run the libcxxabi and libunwind tests in mingw configurations
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Apr 13 13:13:14 PDT 2023
mstorsjo created this revision.
Herald added a subscriber: arichardson.
Herald added a project: All.
mstorsjo requested review of this revision.
Herald added a project: libc++.
Herald added a reviewer: libc++.
The check-runtimes function runs check-cxx, check-cxxabi and check-unwind.
This still depends on D147638 <https://reviews.llvm.org/D147638>, D147640 <https://reviews.llvm.org/D147640> and D147860 <https://reviews.llvm.org/D147860>. (check-unwind
should already be passing, while the three remaining patches makes
check-cxxabi pass too.)
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D148267
Files:
libcxx/utils/ci/run-buildbot
Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -625,8 +625,7 @@
-DCMAKE_C_COMPILER=x86_64-w64-mingw32-clang \
-DCMAKE_CXX_COMPILER=x86_64-w64-mingw32-clang++ \
-C "${MONOREPO_ROOT}/libcxx/cmake/caches/MinGW.cmake"
- echo "+++ Running the libc++ tests"
- ${NINJA} -vC "${BUILD_DIR}" check-cxx
+ check-runtimes
;;
mingw-static)
clean
@@ -636,8 +635,7 @@
-C "${MONOREPO_ROOT}/libcxx/cmake/caches/MinGW.cmake" \
-DLIBCXX_ENABLE_SHARED=OFF \
-DLIBUNWIND_ENABLE_SHARED=OFF
- echo "+++ Running the libc++ tests"
- ${NINJA} -vC "${BUILD_DIR}" check-cxx
+ check-runtimes
;;
mingw-dll-i686)
clean
@@ -645,8 +643,7 @@
-DCMAKE_C_COMPILER=i686-w64-mingw32-clang \
-DCMAKE_CXX_COMPILER=i686-w64-mingw32-clang++ \
-C "${MONOREPO_ROOT}/libcxx/cmake/caches/MinGW.cmake"
- echo "+++ Running the libc++ tests"
- ${NINJA} -vC "${BUILD_DIR}" check-cxx
+ check-runtimes
;;
aix)
clean
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D148267.513334.patch
Type: text/x-patch
Size: 1135 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230413/cfe5b959/attachment.bin>
More information about the libcxx-commits
mailing list