[PATCH] D158765: [clang] Also run the clang tests as part of the Clang-specific CI pipeline

Louis Dionne via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 24 14:03:43 PDT 2023


ldionne updated this revision to Diff 553255.
ldionne added a comment.

Only run check-clang


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D158765/new/

https://reviews.llvm.org/D158765

Files:
  clang/utils/ci/buildkite-pipeline.yml
  clang/utils/ci/run-buildbot


Index: clang/utils/ci/run-buildbot
===================================================================
--- clang/utils/ci/run-buildbot
+++ clang/utils/ci/run-buildbot
@@ -81,17 +81,19 @@
     # network I/O.
     cmake                                                                      \
         -S llvm                                                                \
-        -B build                                                               \
+        -B ${BUILD_DIR}                                                        \
         -G Ninja                                                               \
         -DCMAKE_CXX_COMPILER_LAUNCHER="ccache"                                 \
         -DCMAKE_BUILD_TYPE=Release                                             \
         -DCMAKE_INSTALL_PREFIX=install                                         \
         -DLLVM_ENABLE_PROJECTS="clang;compiler-rt"                             \
 
-    ninja -C build install-clang install-clang-resource-headers
+    ninja -C ${BUILD_DIR} install-clang install-clang-resource-headers
     ccache -s
     tar -cJvf install.tar.xz install/
     buildkite-agent artifact upload --debug install.tar.xz
+
+    ninja -C ${BUILD_DIR} check-clang
 ;;
 generic-cxx03)
     buildkite-agent artifact download install.tar.xz .
Index: clang/utils/ci/buildkite-pipeline.yml
===================================================================
--- clang/utils/ci/buildkite-pipeline.yml
+++ clang/utils/ci/buildkite-pipeline.yml
@@ -31,7 +31,7 @@
 
   - wait
 
-  - label: "Building clang"
+  - label: "Building and testing clang"
     commands:
       - "clang/utils/ci/run-buildbot build-clang"
     agents:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D158765.553255.patch
Type: text/x-patch
Size: 1693 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230824/d351f73f/attachment.bin>


More information about the cfe-commits mailing list