Diff
Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js (252452 => 252453)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js 2019-11-14 09:37:12 UTC (rev 252452)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js 2019-11-14 11:29:14 UTC (rev 252453)
@@ -28,7 +28,6 @@
const queueInfo = {
"commit-queue": {platform: Dashboard.Platform.macOSHighSierra, shortName: "commit", title: "Commit 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"},
"win-ews": {platform: Dashboard.Platform.Windows10, shortName: "win", title: "WebKit1\xa0Release\xa0Build\xa0EWS"},
};
Modified: trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py (252452 => 252453)
--- trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py 2019-11-14 09:37:12 UTC (rev 252452)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py 2019-11-14 11:29:14 UTC (rev 252453)
@@ -42,7 +42,7 @@
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']
+ 'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'webkitperl', 'webkitpy', 'services']
# FIXME: Auto-generate the queue's trigger relationship
QUEUE_TRIGGERS = {
'api-ios': 'ios-sim',
Modified: trunk/Tools/BuildSlaveSupport/ews-build/config.json (252452 => 252453)
--- trunk/Tools/BuildSlaveSupport/ews-build/config.json 2019-11-14 09:37:12 UTC (rev 252452)
+++ trunk/Tools/BuildSlaveSupport/ews-build/config.json 2019-11-14 11:29:14 UTC (rev 252453)
@@ -483,7 +483,7 @@
"name": "try",
"port": 5555,
"builderNames": ["Apply-WatchList-EWS", "Bindings-Tests-EWS", "GTK-Webkit2-EWS", "iOS-13-Build-EWS", "iOS-13-Simulator-Build-EWS",
- "macOS-High-Sierra-Debug-Build-EWS", "macOS-High-Sierra-Release-Build-EWS",
+ "JSC-Tests-EWS", "macOS-High-Sierra-Debug-Build-EWS", "macOS-High-Sierra-Release-Build-EWS",
"Services-EWS", "Style-EWS", "WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS"]
},
{
@@ -490,7 +490,7 @@
"type": "Try_Userpass",
"name": "disabled",
"port": 5556,
- "builderNames": ["JSC-Tests-EWS", "Windows-EWS"]
+ "builderNames": ["Windows-EWS"]
},
{
"type": "Triggerable",
Modified: trunk/Tools/ChangeLog (252452 => 252453)
--- trunk/Tools/ChangeLog 2019-11-14 09:37:12 UTC (rev 252452)
+++ trunk/Tools/ChangeLog 2019-11-14 11:29:14 UTC (rev 252453)
@@ -1,3 +1,16 @@
+2019-11-14 Aakash Jain <[email protected]>
+
+ [ews] Enable JSC queue on new EWS
+ https://bugs.webkit.org/show_bug.cgi?id=204179
+
+ Reviewed by Jonathan Bedard.
+
+ * BuildSlaveSupport/ews-build/config.json: Enabled the scheduler for JSC queue.
+ * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled JSC queue bubble on new EWS.
+ * QueueStatusServer/config/queues.py: Removed JSC queue from old EWS.
+ * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js:
+ (BubbleQueueServer): Removed JSC queue from bot-watcher's dashboard.
+
2019-11-13 Wenson Hsieh <[email protected]>
[Clipboard API] Add support for Clipboard.write()
Modified: trunk/Tools/QueueStatusServer/config/queues.py (252452 => 252453)
--- trunk/Tools/QueueStatusServer/config/queues.py 2019-11-14 09:37:12 UTC (rev 252452)
+++ trunk/Tools/QueueStatusServer/config/queues.py 2019-11-14 11:29:14 UTC (rev 252453)
@@ -32,7 +32,6 @@
# Eventually the list of queues may be stored in the data store.
all_queue_names = [
"commit-queue",
- "jsc-ews",
"jsc-mips-ews",
"jsc-armv7-ews",
"jsc-i386-ews",