Changeset 179043 in webkit


Ignore:
Timestamp:
Jan 23, 2015 4:49:02 PM (9 years ago)
Author:
Csaba Osztrogonác
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

    r178596 r179043  
    813813    def __init__(self, platform, configuration, architectures, triggers=None, additionalArguments=None, SVNMirror=None):
    814814        Factory.__init__(self, platform, configuration, architectures, True, additionalArguments, SVNMirror)
    815         self.addStep(CompileWebKit())
     815
     816        if platform == "win":
     817            self.addStep(CompileWebKit(timeout=2*60*60))
     818        else:
     819            self.addStep(CompileWebKit())
     820
    816821        if triggers:
    817822            self.addStep(ArchiveBuiltProduct())
  • trunk/Tools/ChangeLog

    r179033 r179043  
     12015-01-23  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Fix the false positive build failures on the Windows buildbots
     4        https://bugs.webkit.org/show_bug.cgi?id=140819
     5
     6        Reviewed by Brent Fulgham.
     7
     8        Increase the build timeout (without producing output) to 2 hours for Windows bots,
     9        the default 20 minutes is enough for others since they produce output during the build.
     10
     11        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     12        (BuildFactory.__init__):
     13
    1142015-01-23  Brent Fulgham  <bfulgham@apple.com>
    215
Note: See TracChangeset for help on using the changeset viewer.