[libcxx-commits] [libcxx] [libc++] Add a CI job for the LLDB data formatters (PR #65174)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Oct 12 16:37:22 PDT 2023


================
@@ -728,6 +728,22 @@ steps:
           limit: 2
     timeout_in_minutes: 120
 
+  - label: "LLDB Data Formatters"
+    command: "libcxx/utils/ci/run-buildbot check-lldb-data-formatters"
+    artifact_paths:
+      - "**/test-results.xml"
+    env:
+        CC: "clang-${LLVM_HEAD_VERSION}"
+        CXX: "clang++-${LLVM_HEAD_VERSION}"
+    agents:
+      queue: "libcxx-builders"
+      os: "linux"
+    retry:
+      automatic:
+        - exit_status: -1  # Agent was lost
+          limit: 2
+    timeout_in_minutes: 120
----------------
ldionne wrote:

The timeout we have on BuildKite jobs is the same everywhere, it's not really related to any job actually taking close to that amount of time. We basically set a timeout to avoid the case where an infinite loop would cause a job to never finish.

https://github.com/llvm/llvm-project/pull/65174


More information about the libcxx-commits mailing list