[libcxx-commits] [libcxx] 320d4c9 - [libc++] Update Apple CI jobs to run the C++23 configuration (#66367)

via libcxx-commits libcxx-commits at lists.llvm.org
Fri Sep 15 07:15:19 PDT 2023


Author: Louis Dionne
Date: 2023-09-15T10:15:15-04:00
New Revision: 320d4c90fa52d59cc0ed7bac570cd62323dae56f

URL: https://github.com/llvm/llvm-project/commit/320d4c90fa52d59cc0ed7bac570cd62323dae56f
DIFF: https://github.com/llvm/llvm-project/commit/320d4c90fa52d59cc0ed7bac570cd62323dae56f.diff

LOG: [libc++] Update Apple CI jobs to run the C++23 configuration (#66367)

We were running the test suite in C++20 mode, but we should really be
tracking the latest supported version. We can't do C++26 because the
latest stable AppleClang doesn't support it yet.

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 90bb343f7c7ad03..f2329457c7bd938 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -908,7 +908,7 @@ steps:
   - group: ":mac: Apple"
     steps:
     - label: "MacOS x86_64"
-      command: "libcxx/utils/ci/run-buildbot generic-cxx20"
+      command: "libcxx/utils/ci/run-buildbot generic-cxx23"
       artifact_paths:
         - "**/test-results.xml"
         - "**/*.abilist"
@@ -923,7 +923,7 @@ steps:
       timeout_in_minutes: 120
 
     - label: "MacOS arm64"
-      command: "libcxx/utils/ci/run-buildbot generic-cxx20"
+      command: "libcxx/utils/ci/run-buildbot generic-cxx23"
       artifact_paths:
         - "**/test-results.xml"
         - "**/*.abilist"


        


More information about the libcxx-commits mailing list