Title: [112371] trunk/Tools
- Revision
- 112371
- Author
- [email protected]
- Date
- 2012-03-28 01:16:24 -0700 (Wed, 28 Mar 2012)
Log Message
kill-old-processes doesn't do anything on linux
https://bugs.webkit.org/show_bug.cgi?id=82388
One more attempt to disable kill-old-processes on the Qt bots not to kill each others.
The platform in Factory comes from config.json, accordingly platform is fullplatform,
for example: qt-4.8, qt-5.0-wk2. We have to check only the prefix of platform.
Reviewed by Ryosuke Niwa.
* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(Factory.__init__):
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (112370 => 112371)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg 2012-03-28 07:36:49 UTC (rev 112370)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg 2012-03-28 08:16:24 UTC (rev 112371)
@@ -700,7 +700,7 @@
self.addStep(ConfigureBuild, platform=platform, configuration=configuration, architecture=" ".join(architectures), buildOnly=buildOnly, features=features)
self.addStep(CheckOutSource)
# There are multiple Qt slaves running on same machines, so buildslaves shouldn't kill the processes of other slaves.
- if platform != "qt":
+ if not platform.startswith("qt"):
self.addStep(KillOldProcesses)
if platform == "win":
self.addStep(InstallWin32Dependencies)
Modified: trunk/Tools/ChangeLog (112370 => 112371)
--- trunk/Tools/ChangeLog 2012-03-28 07:36:49 UTC (rev 112370)
+++ trunk/Tools/ChangeLog 2012-03-28 08:16:24 UTC (rev 112371)
@@ -1,3 +1,18 @@
+2012-03-28 Csaba Osztrogonác <[email protected]>
+
+ kill-old-processes doesn't do anything on linux
+ https://bugs.webkit.org/show_bug.cgi?id=82388
+
+ One more attempt to disable kill-old-processes on the Qt bots not to kill each others.
+
+ The platform in Factory comes from config.json, accordingly platform is fullplatform,
+ for example: qt-4.8, qt-5.0-wk2. We have to check only the prefix of platform.
+
+ Reviewed by Ryosuke Niwa.
+
+ * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+ (Factory.__init__):
+
2012-03-28 Hao Zheng <[email protected]>
Make Chromium port for Android use hardware gpu path default.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes