[libcxx-commits] [PATCH] D157421: [libc++] Temporarily allow AIX builders to fail

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Aug 8 10:44:47 PDT 2023


ldionne created this revision.
Herald added a subscriber: arichardson.
Herald added a project: All.
ldionne requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

The builders are in a broken state, which causes all the CI builds
to appear as red. Make them soft fail until we've managed to reach
the build bot owners.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D157421

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
@@ -1039,6 +1039,7 @@
             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)"
@@ -1058,6 +1059,7 @@
           - 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"
@@ -1076,6 +1078,7 @@
           - exit_status: -1  # Agent was lost
             limit: 2
       timeout_in_minutes: 120
+      soft_fail: true
 
   - group: ":freebsd: FreeBSD"
     steps:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D157421.548281.patch
Type: text/x-patch
Size: 837 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230808/df924d30/attachment.bin>


More information about the libcxx-commits mailing list