Title: [249046] trunk/Tools
Revision
249046
Author
[email protected]
Date
2019-08-23 08:47:44 -0700 (Fri, 23 Aug 2019)

Log Message

[ews] Enable Style queue on new EWS
https://bugs.webkit.org/show_bug.cgi?id=201071

Reviewed by Jonathan Bedard.

* BuildSlaveSupport/ews-build/config.json: Enabled the scheduler for Style queue.
* BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled style queue bubble on new EWS.
* QueueStatusServer/config/queues.py: Removed style queue from old EWS.
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js:
(BubbleQueueServer): Removed style queue from bot-watcher's dashboard.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js (249045 => 249046)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js	2019-08-23 15:31:12 UTC (rev 249045)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js	2019-08-23 15:47:44 UTC (rev 249046)
@@ -27,7 +27,6 @@
 {
     const queueInfo = {
         "commit-queue": {platform: Dashboard.Platform.macOSHighSierra, shortName: "commit", title: "Commit Queue"},
-        "style-queue": {shortName: "style", title: "Style Checker Queue"},
         "jsc-armv7-ews": {platform: Dashboard.Platform.LinuxJSCOnly, shortName: "jsc-armv7", title: "ARMv7\xa0Release\xa0Build\xa0EWS"},
         "jsc-ews": {platform: Dashboard.Platform.macOSMojave, shortName: "jsc", title: "Release\xa0JSC\xa0Tests\xa0EWS"},
         "jsc-mips-ews": {platform: Dashboard.Platform.LinuxJSCOnly, shortName: "jsc-mips-ews", title: "MIPS\xa0Release\xa0Build\xa0EWS"},

Modified: trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py (249045 => 249046)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py	2019-08-23 15:31:12 UTC (rev 249045)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py	2019-08-23 15:47:44 UTC (rev 249046)
@@ -39,9 +39,9 @@
 class StatusBubble(View):
     # These queue names are from shortname in https://trac.webkit.org/browser/webkit/trunk/Tools/BuildSlaveSupport/ews-build/config.json
     # FIXME: Auto-generate this list https://bugs.webkit.org/show_bug.cgi?id=195640
-    ALL_QUEUES = ['ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',
-                  'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'style', 'webkitperl', 'webkitpy', 'win', 'services']
-    ENABLED_QUEUES = ['ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',
+    ALL_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',
+                  'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'webkitperl', 'webkitpy', 'win', 'services']
+    ENABLED_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',
                       'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'webkitperl', 'webkitpy', 'services']
     # FIXME: Auto-generate the queue's trigger relationship
     QUEUE_TRIGGERS = {

Modified: trunk/Tools/BuildSlaveSupport/ews-build/config.json (249045 => 249046)


--- trunk/Tools/BuildSlaveSupport/ews-build/config.json	2019-08-23 15:31:12 UTC (rev 249045)
+++ trunk/Tools/BuildSlaveSupport/ews-build/config.json	2019-08-23 15:47:44 UTC (rev 249046)
@@ -455,13 +455,13 @@
       "port": 5555,
       "builderNames": ["Bindings-Tests-EWS", "GTK-Webkit2-EWS", "iOS-12-Build-EWS", "iOS-12-Simulator-Build-EWS",
                        "macOS-High-Sierra-Debug-Build-EWS", "macOS-High-Sierra-Release-Build-EWS",
-                       "Services-EWS", "WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS"]
+                       "Services-EWS", "Style-EWS", "WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS"]
     },
     {
       "type": "Try_Userpass",
       "name": "disabled",
       "port": 5556,
-      "builderNames": ["JSC-Tests-EWS", "Style-EWS", "Windows-EWS"]
+      "builderNames": ["JSC-Tests-EWS", "Windows-EWS"]
     },
     {
       "type": "Triggerable",

Modified: trunk/Tools/ChangeLog (249045 => 249046)


--- trunk/Tools/ChangeLog	2019-08-23 15:31:12 UTC (rev 249045)
+++ trunk/Tools/ChangeLog	2019-08-23 15:47:44 UTC (rev 249046)
@@ -1,3 +1,16 @@
+2019-08-23  Aakash Jain  <[email protected]>
+
+        [ews] Enable Style queue on new EWS
+        https://bugs.webkit.org/show_bug.cgi?id=201071
+
+        Reviewed by Jonathan Bedard.
+
+        * BuildSlaveSupport/ews-build/config.json: Enabled the scheduler for Style queue.
+        * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled style queue bubble on new EWS.
+        * QueueStatusServer/config/queues.py: Removed style queue from old EWS.
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js:
+        (BubbleQueueServer): Removed style queue from bot-watcher's dashboard.
+
 2019-08-22  Fujii Hironori  <[email protected]>
 
         [Win][MiniBrowser] URL bar should be updated for in-page navigations

Modified: trunk/Tools/QueueStatusServer/config/queues.py (249045 => 249046)


--- trunk/Tools/QueueStatusServer/config/queues.py	2019-08-23 15:31:12 UTC (rev 249045)
+++ trunk/Tools/QueueStatusServer/config/queues.py	2019-08-23 15:47:44 UTC (rev 249046)
@@ -32,7 +32,6 @@
 # Eventually the list of queues may be stored in the data store.
 all_queue_names = [
     "commit-queue",
-    "style-queue",
     "jsc-ews",
     "jsc-mips-ews",
     "jsc-armv7-ews",
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to