Title: [247622] trunk/Tools
Revision
247622
Author
aakash_j...@apple.com
Date
2019-07-18 15:35:48 -0700 (Thu, 18 Jul 2019)

Log Message

[ews-build] Enable iOS WK2 tester queue on new EWS
https://bugs.webkit.org/show_bug.cgi?id=199867

Reviewed by Jonathan Bedard.

* BuildSlaveSupport/ews-build/config.json: Enabled the triggers for ios-wk2 queue.
* BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled ios-sim (builder) and ios-wk2 (tester) bubbles.
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js: Removed ios-sim queue from bot-watcher's dashboard.
* QueueStatusServer/config/queues.py: Removed ios-sim queue from old EWS.

Modified Paths

Diff

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


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js	2019-07-18 21:56:36 UTC (rev 247621)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js	2019-07-18 22:35:48 UTC (rev 247622)
@@ -28,7 +28,6 @@
     const queueInfo = {
         "commit-queue": {platform: Dashboard.Platform.macOSHighSierra, shortName: "commit", title: "Commit Queue"},
         "style-queue": {shortName: "style", title: "Style Checker Queue"},
-        "ios-sim-ews": {platform: Dashboard.Platform.iOS12Simulator, shortName: "ios-sim", title: "WebKit2\xa0Release\xa0Tests\xa0EWS"},
         "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 (247621 => 247622)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py	2019-07-18 21:56:36 UTC (rev 247621)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py	2019-07-18 22:35:48 UTC (rev 247622)
@@ -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', 'gtk', 'wpe', 'wincairo', 'api-ios', 'api-mac', 'bindings', 'ios-sim', 'ios-wk2', 'jsc', 'mac', 'mac-32bit', 'mac-32bit-wk2',
+    ALL_QUEUES = ['ios', 'ios-sim', 'gtk', 'wpe', 'wincairo', 'ios-wk2', 'api-ios', 'api-mac', 'bindings', 'jsc', 'mac', 'mac-32bit', 'mac-32bit-wk2',
                     'mac-debug', 'mac-debug-wk1', 'mac-wk1', 'mac-wk2', 'style', 'webkitperl', 'webkitpy', 'win']
-    ENABLED_QUEUES = ['ios', 'gtk', 'wpe', 'wincairo', 'api-ios', 'api-mac', 'bindings', 'webkitperl', 'webkitpy']
+    ENABLED_QUEUES = ['ios', 'ios-sim', 'gtk', 'wpe', 'wincairo', 'ios-wk2', 'api-ios', 'api-mac', 'bindings', 'webkitperl', 'webkitpy']
     # FIXME: Auto-generate the queue's trigger relationship
     QUEUE_TRIGGERS = {
         'api-ios': 'ios-sim',

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


--- trunk/Tools/BuildSlaveSupport/ews-build/config.json	2019-07-18 21:56:36 UTC (rev 247621)
+++ trunk/Tools/BuildSlaveSupport/ews-build/config.json	2019-07-18 22:35:48 UTC (rev 247622)
@@ -311,7 +311,7 @@
       "platform": "ios-simulator-12",
       "configuration": "release",
       "architectures": ["x86_64"],
-      "triggers": ["api-tests-ios-sim-ews"],
+      "triggers": ["api-tests-ios-sim-ews", "ios-12-sim-wk2-tests-ews"],
       "workernames": ["ews152", "ews154", "ews156", "ews157"]
     },
     {
@@ -453,7 +453,7 @@
       "type": "Try_Userpass",
       "name": "disabled",
       "port": 5556,
-      "builderNames": ["JSC-Tests-EWS", "iOS-12-Simulator-WK2-Tests-EWS", "macOS-High-Sierra-Release-WK2-Tests-EWS",
+      "builderNames": ["JSC-Tests-EWS", "macOS-High-Sierra-Release-WK2-Tests-EWS",
                        "macOS-High-Sierra-Release-WK1-Tests-EWS", "macOS-High-Sierra-Debug-Build-EWS", "Style-EWS", "Windows-EWS"]
     },
     {
@@ -465,6 +465,13 @@
     },
     {
       "type": "Triggerable",
+      "name": "ios-12-sim-wk2-tests-ews",
+      "builderNames": [
+        "iOS-12-Simulator-WK2-Tests-EWS"
+      ]
+    },
+    {
+      "type": "Triggerable",
       "name": "api-tests-ios-sim-ews",
       "builderNames": [
         "API-Tests-iOS-Simulator-EWS"

Modified: trunk/Tools/ChangeLog (247621 => 247622)


--- trunk/Tools/ChangeLog	2019-07-18 21:56:36 UTC (rev 247621)
+++ trunk/Tools/ChangeLog	2019-07-18 22:35:48 UTC (rev 247622)
@@ -1,5 +1,17 @@
 2019-07-18  Aakash Jain  <aakash_j...@apple.com>
 
+        [ews-build] Enable iOS WK2 tester queue on new EWS
+        https://bugs.webkit.org/show_bug.cgi?id=199867
+
+        Reviewed by Jonathan Bedard.
+
+        * BuildSlaveSupport/ews-build/config.json: Enabled the triggers for ios-wk2 queue.
+        * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled ios-sim (builder) and ios-wk2 (tester) bubbles.
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js: Removed ios-sim queue from bot-watcher's dashboard.
+        * QueueStatusServer/config/queues.py: Removed ios-sim queue from old EWS.
+
+2019-07-18  Aakash Jain  <aakash_j...@apple.com>
+
         [ews-build] Add build step to AnalyzeLayoutTestsResults
         https://bugs.webkit.org/show_bug.cgi?id=199877
 

Modified: trunk/Tools/QueueStatusServer/config/queues.py (247621 => 247622)


--- trunk/Tools/QueueStatusServer/config/queues.py	2019-07-18 21:56:36 UTC (rev 247621)
+++ trunk/Tools/QueueStatusServer/config/queues.py	2019-07-18 22:35:48 UTC (rev 247622)
@@ -33,7 +33,6 @@
 all_queue_names = [
     "commit-queue",
     "style-queue",
-    "ios-sim-ews",
     "jsc-ews",
     "jsc-mips-ews",
     "jsc-armv7-ews",
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to