[PATCH] D129961: Raise timeout for Solaris builders

Rainer Orth via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Jul 17 02:02:31 PDT 2022


ro created this revision.
ro added a reviewer: gkistanova.
ro added a project: Zorg.
Herald added a subscriber: fedor.sergeev.
Herald added a project: All.
ro requested review of this revision.

As described in D129837 <https://reviews.llvm.org/D129837>, the Solaris builders (`solaris11-amd64` in particular) suffer from a `procfs` bug that causes long runtimes for some sanitizer tests, which eventually get killed after the default timeout of 1200 s.  As a workaround, this patch increases the timeout to allow them to finish.


Repository:
  rZORG LLVM Github Zorg

https://reviews.llvm.org/D129961

Files:
  buildbot/osuosl/master/config/builders.py


Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -2220,6 +2220,7 @@
     'factory' : ClangBuilder.getClangCMakeBuildFactory(
                     jobs=8,
                     clean=False,
+                    timeout=1800,
                     checkout_lld=False,
                     extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=ON',
                                     '-DLLVM_TARGETS_TO_BUILD=X86',
@@ -2233,6 +2234,7 @@
     'factory' : ClangBuilder.getClangCMakeBuildFactory(
                     jobs=8,
                     clean=False,
+                    timeout=1800,
                     checkout_lld=False,
                     extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=ON',
                                     '-DLLVM_TARGETS_TO_BUILD=Sparc',


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D129961.445306.patch
Type: text/x-patch
Size: 923 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220717/9220e07e/attachment.bin>


More information about the llvm-commits mailing list