[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
Mon Jul 12 20:45:14 PDT 2021
ldionne updated this revision to Diff 358132.
ldionne added a comment.
Run jobs on c++20 instead of c++2b, since the latest stable AppleClang doesn't support -std=c++2b
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
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.358132.patch
Type: text/x-patch
Size: 976 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210713/68d410e1/attachment.bin>
More information about the libcxx-commits
mailing list