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

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Sep 14 05:39:50 PDT 2023


https://github.com/ldionne created https://github.com/llvm/llvm-project/pull/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.

>From 3ab4412f14a2793d2294060f66b703d7e0bc5d0b Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Thu, 14 Sep 2023 08:38:35 -0400
Subject: [PATCH] [libc++] Update Apple CI jobs to run the C++23 configuration

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.
---
 libcxx/utils/ci/buildkite-pipeline.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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