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

via libcxx-commits libcxx-commits at lists.llvm.org
Thu Sep 14 05:40:59 PDT 2023


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libcxx
            
<details>
<summary>Changes</summary>
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.
--
Full diff: https://github.com/llvm/llvm-project/pull/66367.diff

1 Files Affected:

- (modified) libcxx/utils/ci/buildkite-pipeline.yml (+2-2) 


<pre>
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: &quot;:mac: Apple&quot;
     steps:
     - label: &quot;MacOS x86_64&quot;
-      command: &quot;libcxx/utils/ci/run-buildbot generic-cxx20&quot;
+      command: &quot;libcxx/utils/ci/run-buildbot generic-cxx23&quot;
       artifact_paths:
         - &quot;**/test-results.xml&quot;
         - &quot;**/*.abilist&quot;
@@ -923,7 +923,7 @@ steps:
       timeout_in_minutes: 120
 
     - label: &quot;MacOS arm64&quot;
-      command: &quot;libcxx/utils/ci/run-buildbot generic-cxx20&quot;
+      command: &quot;libcxx/utils/ci/run-buildbot generic-cxx23&quot;
       artifact_paths:
         - &quot;**/test-results.xml&quot;
         - &quot;**/*.abilist&quot;
</pre>
</details>


https://github.com/llvm/llvm-project/pull/66367


More information about the libcxx-commits mailing list