[libcxx-commits] [libcxx] 0148301 - [libc++] Comment out the AIX jobs that are failing

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Aug 15 09:44:10 PDT 2023


Author: Louis Dionne
Date: 2023-08-15T12:43:15-04:00
New Revision: 014830193b21ff87639762cbb89dad79ae5831ec

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

LOG: [libc++] Comment out the AIX jobs that are failing

Marking them as soft_fail still causes the CI to show up as failed
on Phabricator patches.

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 83a55421456604..7db7b04684f339 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -1057,46 +1057,44 @@ steps:
             limit: 2
       timeout_in_minutes: 120
 
-  # TODO: Remove soft_fail from these jobs once the AIX builders have been fixed.
-  - group: "AIX"
-    steps:
-    - label: "AIX (32-bit)"
-      command: "libcxx/utils/ci/run-buildbot aix"
-      artifact_paths:
-        - "**/test-results.xml"
-        - "**/*.abilist"
-      env:
-          CC: "clang"
-          CXX: "clang++"
-          OBJECT_MODE: "32"
-      agents:
-          queue: libcxx-builders
-          os: aix
-      retry:
-        automatic:
-          - exit_status: -1  # Agent was lost
-            limit: 2
-      timeout_in_minutes: 120
-      soft_fail: true
-
-    - label: "AIX (64-bit)"
-      command: "libcxx/utils/ci/run-buildbot aix"
-      artifact_paths:
-        - "**/test-results.xml"
-        - "**/*.abilist"
-      env:
-          CC: "clang"
-          CXX: "clang++"
-          OBJECT_MODE: "64"
-      agents:
-          queue: libcxx-builders
-          os: aix
-      retry:
-        automatic:
-          - exit_status: -1  # Agent was lost
-            limit: 2
-      timeout_in_minutes: 120
-      soft_fail: true
+  # TODO: Uncomment these jobs once the AIX builders have been fixed.
+  # - group: "AIX"
+  #   steps:
+  #   - label: "AIX (32-bit)"
+  #     command: "libcxx/utils/ci/run-buildbot aix"
+  #     artifact_paths:
+  #       - "**/test-results.xml"
+  #       - "**/*.abilist"
+  #     env:
+  #         CC: "clang"
+  #         CXX: "clang++"
+  #         OBJECT_MODE: "32"
+  #     agents:
+  #         queue: libcxx-builders
+  #         os: aix
+  #     retry:
+  #       automatic:
+  #         - exit_status: -1  # Agent was lost
+  #           limit: 2
+  #     timeout_in_minutes: 120
+
+  #   - label: "AIX (64-bit)"
+  #     command: "libcxx/utils/ci/run-buildbot aix"
+  #     artifact_paths:
+  #       - "**/test-results.xml"
+  #       - "**/*.abilist"
+  #     env:
+  #         CC: "clang"
+  #         CXX: "clang++"
+  #         OBJECT_MODE: "64"
+  #     agents:
+  #         queue: libcxx-builders
+  #         os: aix
+  #     retry:
+  #       automatic:
+  #         - exit_status: -1  # Agent was lost
+  #           limit: 2
+  #     timeout_in_minutes: 120
 
   - group: ":freebsd: FreeBSD"
     steps:


        


More information about the libcxx-commits mailing list