[llvm-branch-commits] [libcxx] 6277e34 - [libc++] Disable back-deployment CI on the release branch

Louis Dionne via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Tue Feb 15 08:51:36 PST 2022


Author: Louis Dionne
Date: 2022-02-15T11:51:11-05:00
New Revision: 6277e34840ebd7cab1e856ec56b90b995655c493

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

LOG: [libc++] Disable back-deployment CI on the release branch

As explained in the comment, we don't have macOS 10.15 builders anymore
in the fleet. Enabling those tests on the release branch would require
cherry-picking too many changes from `main`.

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 c5c56bb997dfd..6b5137bf30e70 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -598,34 +598,37 @@ steps:
           limit: 2
     timeout_in_minutes: 120
 
-  # Test back-deployment to older Apple platforms
-  - label: "Apple back-deployment macosx10.9"
-    command: "libcxx/utils/ci/run-buildbot apple-system-backdeployment-10.9"
-    artifact_paths:
-      - "**/test-results.xml"
-    agents:
-      queue: "libcxx-builders"
-      os: "macos10.15" # TODO: For now, we're running the back-deployment tests for 10.9 on 10.15, because we don't have proper 10.9 machines
-      arch: "x86_64"
-    retry:
-      automatic:
-        - exit_status: -1  # Agent was lost
-          limit: 2
-    timeout_in_minutes: 120
-
-  - label: "Apple back-deployment macosx10.15"
-    command: "libcxx/utils/ci/run-buildbot apple-system-backdeployment-10.15"
-    artifact_paths:
-      - "**/test-results.xml"
-    agents:
-      queue: "libcxx-builders"
-      os: "macos10.15"
-      arch: "x86_64"
-    retry:
-      automatic:
-        - exit_status: -1  # Agent was lost
-          limit: 2
-    timeout_in_minutes: 120
+  # Those are disabled on the release/14.x branch because we don't have macOS 10.15 builders anymore
+  # in the fleet. Enabling those tests on the release branch would require cherry-picking too many
+  # changes from `main`.
+  # # Test back-deployment to older Apple platforms
+  # - label: "Apple back-deployment macosx10.9"
+  #   command: "libcxx/utils/ci/run-buildbot apple-system-backdeployment-10.9"
+  #   artifact_paths:
+  #     - "**/test-results.xml"
+  #   agents:
+  #     queue: "libcxx-builders"
+  #     os: "macos10.15" # TODO: For now, we're running the back-deployment tests for 10.9 on 10.15, because we don't have proper 10.9 machines
+  #     arch: "x86_64"
+  #   retry:
+  #     automatic:
+  #       - exit_status: -1  # Agent was lost
+  #         limit: 2
+  #   timeout_in_minutes: 120
+
+  # - label: "Apple back-deployment macosx10.15"
+  #   command: "libcxx/utils/ci/run-buildbot apple-system-backdeployment-10.15"
+  #   artifact_paths:
+  #     - "**/test-results.xml"
+  #   agents:
+  #     queue: "libcxx-builders"
+  #     os: "macos10.15"
+  #     arch: "x86_64"
+  #   retry:
+  #     automatic:
+  #       - exit_status: -1  # Agent was lost
+  #         limit: 2
+  #   timeout_in_minutes: 120
 
   - label: "AArch64"
     command: "libcxx/utils/ci/run-buildbot aarch64"


        


More information about the llvm-branch-commits mailing list