Title: [125038] trunk/Tools
Revision
125038
Author
[email protected]
Date
2012-08-08 08:18:25 -0700 (Wed, 08 Aug 2012)

Log Message

Introduce cr-android bots in the EWS system
https://bugs.webkit.org/show_bug.cgi?id=93472

Reviewed by Adam Barth.

This adds the queue to the EWS scripts. Two builders are ready to be
attached to the queue. All webkitpy tests pass with this change applied.

* QueueStatusServer/model/queues.py:
(Queue):
* Scripts/webkitpy/tool/commands/earlywarningsystem.py:
(ChromiumAndroidEWS):
* Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
(EarlyWarningSytemTest.test_builder_ewses):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (125037 => 125038)


--- trunk/Tools/ChangeLog	2012-08-08 15:10:14 UTC (rev 125037)
+++ trunk/Tools/ChangeLog	2012-08-08 15:18:25 UTC (rev 125038)
@@ -1,3 +1,20 @@
+2012-08-08  Peter Beverloo  <[email protected]>
+
+        Introduce cr-android bots in the EWS system
+        https://bugs.webkit.org/show_bug.cgi?id=93472
+
+        Reviewed by Adam Barth.
+
+        This adds the queue to the EWS scripts. Two builders are ready to be
+        attached to the queue. All webkitpy tests pass with this change applied.
+
+        * QueueStatusServer/model/queues.py:
+        (Queue):
+        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
+        (ChromiumAndroidEWS):
+        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
+        (EarlyWarningSytemTest.test_builder_ewses):
+
 2012-08-08  Carlos Garcia Campos  <[email protected]>
 
         Unreviewed. Fix GTK+ build with GTK2 after r121475.

Modified: trunk/Tools/QueueStatusServer/model/queues.py (125037 => 125038)


--- trunk/Tools/QueueStatusServer/model/queues.py	2012-08-08 15:10:14 UTC (rev 125037)
+++ trunk/Tools/QueueStatusServer/model/queues.py	2012-08-08 15:18:25 UTC (rev 125038)
@@ -40,6 +40,7 @@
         "commit-queue",
         "style-queue",
         "chromium-ews",  # aka cr-linux-ews
+        "cr-android-ews",
         "qt-ews",
         "qt-wk2-ews",
         "gtk-ews",

Modified: trunk/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem.py (125037 => 125038)


--- trunk/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem.py	2012-08-08 15:10:14 UTC (rev 125037)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem.py	2012-08-08 15:18:25 UTC (rev 125038)
@@ -192,6 +192,13 @@
     name = "cr-win-ews"
 
 
+class ChromiumAndroidEWS(AbstractChromiumEWS):
+    name = "cr-android-ews"
+    watchers = AbstractChromiumEWS.watchers + [
+        "[email protected]",
+    ]
+
+
 class MacEWS(AbstractEarlyWarningSystem):
     name = "mac-ews"
     port_name = "mac"

Modified: trunk/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py (125037 => 125038)


--- trunk/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py	2012-08-08 15:10:14 UTC (rev 125037)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py	2012-08-08 15:18:25 UTC (rev 125038)
@@ -82,6 +82,7 @@
     def test_builder_ewses(self):
         self._test_builder_ews(MacEWS())
         self._test_builder_ews(ChromiumWindowsEWS())
+        self._test_builder_ews(ChromiumAndroidEWS())
         self._test_builder_ews(QtEWS())
         self._test_builder_ews(QtWK2EWS())
         self._test_builder_ews(GtkEWS())
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to