Title: [179043] trunk/Tools
Revision
179043
Author
o...@webkit.org
Date
2015-01-23 16:49:02 -0800 (Fri, 23 Jan 2015)

Log Message

Fix the false positive build failures on the Windows buildbots
https://bugs.webkit.org/show_bug.cgi?id=140819

Reviewed by Brent Fulgham.

Increase the build timeout (without producing output) to 2 hours for Windows bots,
the default 20 minutes is enough for others since they produce output during the build.

* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(BuildFactory.__init__):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (179042 => 179043)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2015-01-24 00:48:24 UTC (rev 179042)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2015-01-24 00:49:02 UTC (rev 179043)
@@ -812,7 +812,12 @@
 class BuildFactory(Factory):
     def __init__(self, platform, configuration, architectures, triggers=None, additionalArguments=None, SVNMirror=None):
         Factory.__init__(self, platform, configuration, architectures, True, additionalArguments, SVNMirror)
-        self.addStep(CompileWebKit())
+
+        if platform == "win":
+            self.addStep(CompileWebKit(timeout=2*60*60))
+        else:
+            self.addStep(CompileWebKit())
+
         if triggers:
             self.addStep(ArchiveBuiltProduct())
             self.addStep(UploadBuiltProduct())

Modified: trunk/Tools/ChangeLog (179042 => 179043)


--- trunk/Tools/ChangeLog	2015-01-24 00:48:24 UTC (rev 179042)
+++ trunk/Tools/ChangeLog	2015-01-24 00:49:02 UTC (rev 179043)
@@ -1,3 +1,16 @@
+2015-01-23  Csaba Osztrogonác  <o...@webkit.org>
+
+        Fix the false positive build failures on the Windows buildbots
+        https://bugs.webkit.org/show_bug.cgi?id=140819
+
+        Reviewed by Brent Fulgham.
+
+        Increase the build timeout (without producing output) to 2 hours for Windows bots,
+        the default 20 minutes is enough for others since they produce output during the build.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+        (BuildFactory.__init__):
+
 2015-01-23  Brent Fulgham  <bfulg...@apple.com>
 
         [Win] Teach WebKit to provide IAccessible2 'get_language' and access AXLanguage
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to