[libcxx-commits] [libcxx] dc37d5e - [libc++] Temporarily disable back-deployment testing on arm64 until we figure out ongoing issues

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jul 19 14:58:38 PDT 2023


Author: Louis Dionne
Date: 2023-07-19T17:58:33-04:00
New Revision: dc37d5ec800b2d32baa0432304382b812b89cd0d

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

LOG: [libc++] Temporarily disable back-deployment testing on arm64 until we figure out ongoing issues

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 a0e84450535ffc..ccf4b5e552bab8 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -896,20 +896,21 @@ steps:
             limit: 2
       timeout_in_minutes: 120
 
-    - label: "Apple back-deployment macosx11.0 arm64"
-      command: "libcxx/utils/ci/run-buildbot apple-system-backdeployment-11.0"
-      artifact_paths:
-        - "**/test-results.xml"
-        - "**/*.abilist"
-      agents:
-        queue: "libcxx-builders"
-        os: "macos"
-        arch: "arm64"
-      retry:
-        automatic:
-          - exit_status: -1  # Agent was lost
-            limit: 2
-      timeout_in_minutes: 120
+    # TODO: Re-enable this once we've figured out how to run back-deployment testing on arm64 on recent OSes
+    # - label: "Apple back-deployment macosx11.0 arm64"
+    #   command: "libcxx/utils/ci/run-buildbot apple-system-backdeployment-11.0"
+    #   artifact_paths:
+    #     - "**/test-results.xml"
+    #     - "**/*.abilist"
+    #   agents:
+    #     queue: "libcxx-builders"
+    #     os: "macos"
+    #     arch: "arm64"
+    #   retry:
+    #     automatic:
+    #       - exit_status: -1  # Agent was lost
+    #         limit: 2
+    #   timeout_in_minutes: 120
 
     - label: "Apple back-deployment with hardening enabled"
       command: "libcxx/utils/ci/run-buildbot apple-system-backdeployment-hardened-11.0"
@@ -919,6 +920,7 @@ steps:
       agents:
         queue: "libcxx-builders"
         os: "macos"
+        arch: "x86_64" # TODO: Remove this once we are able to run back-deployment on arm64 again, since this isn't x86_64 specific
       retry:
         automatic:
           - exit_status: -1  # Agent was lost


        


More information about the libcxx-commits mailing list