[libcxx-commits] [libcxx] ce12d65 - [libc++] Temporarily allow AIX builders to fail

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Aug 8 11:04:31 PDT 2023


Author: Louis Dionne
Date: 2023-08-08T14:04:17-04:00
New Revision: ce12d6563e84c209c7200de3bfbf84c5d349824c

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

LOG: [libc++] Temporarily allow AIX builders to fail

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.

Differential Revision: https://reviews.llvm.org/D157421

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 7affef1c60b462..9cfbe15fd4d0cc 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -1039,6 +1039,7 @@ 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)"
@@ -1058,6 +1059,7 @@ steps:
           - 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 @@ steps:
           - exit_status: -1  # Agent was lost
             limit: 2
       timeout_in_minutes: 120
+      soft_fail: true
 
   - group: ":freebsd: FreeBSD"
     steps:


        


More information about the libcxx-commits mailing list