[libcxx-commits] [PATCH] D105848: [libc++] Add a CI job for macOS on arm64 hardware 🥳

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jul 13 07:27:28 PDT 2021


ldionne updated this revision to Diff 358262.
ldionne added a comment.

Rebase onto main, which contains ABI lists for arm64


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D105848

Files:
  libcxx/utils/ci/buildkite-pipeline.yml
  libcxxabi/test/thread_local_destruction_order.pass.cpp


Index: libcxxabi/test/thread_local_destruction_order.pass.cpp
===================================================================
--- libcxxabi/test/thread_local_destruction_order.pass.cpp
+++ libcxxabi/test/thread_local_destruction_order.pass.cpp
@@ -9,6 +9,9 @@
 // UNSUPPORTED: c++03
 // UNSUPPORTED: libcxxabi-no-threads
 
+// TODO: Investigate this failure
+// XFAIL: target=arm64-apple-{{.+}}
+
 #include <cassert>
 #include <thread>
 
Index: libcxx/utils/ci/buildkite-pipeline.yml
===================================================================
--- libcxx/utils/ci/buildkite-pipeline.yml
+++ libcxx/utils/ci/buildkite-pipeline.yml
@@ -449,7 +449,7 @@
         - exit_status: -1  # Agent was lost
           limit: 2
 
-  - label: "MacOS C++20"
+  - label: "MacOS x86_64"
     command: "libcxx/utils/ci/run-buildbot generic-cxx20"
     artifact_paths:
       - "**/test-results.xml"
@@ -457,6 +457,21 @@
     agents:
       queue: "libcxx-builders"
       os: "macos"
+      arch: "x86_64"
+    retry:
+      automatic:
+        - exit_status: -1  # Agent was lost
+          limit: 2
+
+  - label: "MacOS arm64"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx20"
+    artifact_paths:
+      - "**/test-results.xml"
+      - "**/*.abilist"
+    agents:
+      queue: "libcxx-builders"
+      os: "macos"
+      arch: "arm64"
     retry:
       automatic:
         - exit_status: -1  # Agent was lost


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105848.358262.patch
Type: text/x-patch
Size: 1418 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210713/b967efa5/attachment.bin>


More information about the libcxx-commits mailing list