Changeset 112367 in webkit


Ignore:
Timestamp:
Mar 27, 2012 11:43:30 PM (12 years ago)
Author:
Csaba Osztrogonác
Message:

kill-old-processes doesn't do anything on linux
https://bugs.webkit.org/show_bug.cgi?id=82388

Disable kill-old-processes on the Qt bots not to kill each others.

Reviewed by Ryosuke Niwa.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(Factory.init):

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r111403 r112367  
    700700        self.addStep(ConfigureBuild, platform=platform, configuration=configuration, architecture=" ".join(architectures), buildOnly=buildOnly, features=features)
    701701        self.addStep(CheckOutSource)
    702         self.addStep(KillOldProcesses)
     702        # There are multiple Qt slaves running on same machines, so buildslaves shouldn't kill the processes of other slaves.
     703        if platform != "qt":
     704            self.addStep(KillOldProcesses)
    703705        if platform == "win":
    704706            self.addStep(InstallWin32Dependencies)
  • trunk/Tools/ChangeLog

    r112359 r112367  
     12012-03-27  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        kill-old-processes doesn't do anything on linux
     4        https://bugs.webkit.org/show_bug.cgi?id=82388
     5
     6        Disable kill-old-processes on the Qt bots not to kill each others.
     7
     8        Reviewed by Ryosuke Niwa.
     9
     10        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     11        (Factory.__init__):
     12
    1132012-03-27  Hao Zheng  <zhenghao@chromium.org>
    214
Note: See TracChangeset for help on using the changeset viewer.