[libcxx-commits] [libcxx] 5bf8de8 - [libc++][CI] Upgrades to LLVM 18 as HEAD version.

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Thu Aug 10 08:03:10 PDT 2023


Author: Mark de Wever
Date: 2023-08-10T17:02:56+02:00
New Revision: 5bf8de882ae96a53fdd15eef1682b9168d3d16a2

URL: https://github.com/llvm/llvm-project/commit/5bf8de882ae96a53fdd15eef1682b9168d3d16a2
DIFF: https://github.com/llvm/llvm-project/commit/5bf8de882ae96a53fdd15eef1682b9168d3d16a2.diff

LOG: [libc++][CI] Upgrades to LLVM 18 as HEAD version.

Reviewed By: #libc, ldionne

Differential Revision: https://reviews.llvm.org/D156922

Added: 
    

Modified: 
    libcxx/utils/ci/buildkite-pipeline.yml

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index 9cfbe15fd4d0cc..bda040285bb292 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -26,8 +26,8 @@ env:
     # LLVM POST-BRANCH bump version
     # LLVM POST-BRANCH add compiler test for ToT - 1, e.g. "Clang 17"
     # LLVM RELEASE bump remove compiler ToT - 3, e.g. "Clang 15"
-    LLVM_STABLE_VERSION: "16"
-    LLVM_HEAD_VERSION: "17"
+    LLVM_STABLE_VERSION: "16" # Used for tooling, update after the RELEASE.
+    LLVM_HEAD_VERSION: "18"   # Used compiler, update POST-BRANCH.
     GCC_STABLE_VERSION: "12"
 steps:
   #
@@ -335,6 +335,24 @@ steps:
           limit: 2
     timeout_in_minutes: 120
 
+  - label: "Clang 17"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx23"
+    artifact_paths:
+      - "**/test-results.xml"
+      - "**/*.abilist"
+    env:
+        CC: "clang-17"
+        CXX: "clang++-17"
+        ENABLE_CLANG_TIDY: "On"
+    agents:
+      queue: "libcxx-builders"
+      os: "linux"
+    retry:
+      automatic:
+        - exit_status: -1  # Agent was lost
+          limit: 2
+    timeout_in_minutes: 120
+
   # Tests with the sanitizers.
   - group: "Sanitizers"
     steps:


        


More information about the libcxx-commits mailing list