[libcxx-commits] [libcxx] 3e44aa6 - [libc++] Soft-fail the two sanitizer jobs that have been failing in CI for a while

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed May 3 09:25:59 PDT 2023


Author: Louis Dionne
Date: 2023-05-03T12:25:53-04:00
New Revision: 3e44aa659b98674a1220da235bc2cbafcb311a78

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

LOG: [libc++] Soft-fail the two sanitizer jobs that have been failing in CI for a while

They are not failing on local Docker images, so something must be wrong
with our GCE instances.

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 f489302a55700..17a1dc4633be8 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -332,6 +332,7 @@ steps:
           - exit_status: -1  # Agent was lost
             limit: 2
       timeout_in_minutes: 120
+      soft_fail: true # TODO: Investigate why this job is failing only in the CI environment
 
     - label: "UBSAN"
       command: "libcxx/utils/ci/run-buildbot generic-ubsan"
@@ -368,6 +369,7 @@ steps:
           - exit_status: -1  # Agent was lost
             limit: 2
       timeout_in_minutes: 120
+      soft_fail: true # TODO: Investigate why this job is failing only in the CI environment
 
   # Tests with the various supported ways to build libc++.
   - label: "Bootstrapping build"


        


More information about the libcxx-commits mailing list