[libcxx-commits] [PATCH] D131174: [libc++][CI] Increases the Clang version used.

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Aug 16 10:25:00 PDT 2022


Mordante updated this revision to Diff 453060.
Mordante added a comment.

Tests the alternative approach as discussed during the live review.
(When this works the other jobs needs to be adjusted too.)


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D131174

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


Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -263,22 +263,6 @@
                    -DLIBUNWIND_TEST_CONFIG="llvm-libunwind-merged.cfg.in"
     check-runtimes
 ;;
-generic-clang-13)
-    export CC=clang-13
-    export CXX=clang++-13
-    clean
-    generate-cmake
-    check-runtimes
-    check-abi-list
-;;
-generic-clang-14)
-    export CC=clang-14
-    export CXX=clang++-14
-    clean
-    generate-cmake
-    check-runtimes
-    check-abi-list
-;;
 generic-gcc)
     export CC=gcc-12
     export CXX=g++-12
Index: libcxx/utils/ci/buildkite-pipeline.yml
===================================================================
--- libcxx/utils/ci/buildkite-pipeline.yml
+++ libcxx/utils/ci/buildkite-pipeline.yml
@@ -76,6 +76,9 @@
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
+    env:
+        CC: "clang-15"
+        CXX: "clang++-15"
     agents:
       queue: "libcxx-builders"
       os: "linux"
@@ -204,10 +207,13 @@
     timeout_in_minutes: 120
 
   - label: "Clang 13"
-    command: "libcxx/utils/ci/run-buildbot generic-clang-13"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx2b"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
+    env:
+        CC: "clang-13"
+        CXX: "clang++-13"
     agents:
       queue: "libcxx-builders"
       os: "linux"
@@ -218,7 +224,10 @@
     timeout_in_minutes: 120
 
   - label: "Clang 14"
-    command: "libcxx/utils/ci/run-buildbot generic-clang-14"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx2b"
+    env:
+        CC: "clang-14"
+        CXX: "clang++-14"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131174.453060.patch
Type: text/x-patch
Size: 1789 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220816/262e4eb6/attachment.bin>


More information about the libcxx-commits mailing list