Changeset 249046 in webkit
- Timestamp:
- Aug 23, 2019, 8:47:44 AM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 5 edited
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js (modified) (1 diff)
-
BuildSlaveSupport/ews-app/ews/views/statusbubble.py (modified) (1 diff)
-
BuildSlaveSupport/ews-build/config.json (modified) (2 diffs)
-
ChangeLog (modified) (1 diff)
-
QueueStatusServer/config/queues.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js
r248088 r249046 28 28 const queueInfo = { 29 29 "commit-queue": {platform: Dashboard.Platform.macOSHighSierra, shortName: "commit", title: "Commit Queue"}, 30 "style-queue": {shortName: "style", title: "Style Checker Queue"},31 30 "jsc-armv7-ews": {platform: Dashboard.Platform.LinuxJSCOnly, shortName: "jsc-armv7", title: "ARMv7\xa0Release\xa0Build\xa0EWS"}, 32 31 "jsc-ews": {platform: Dashboard.Platform.macOSMojave, shortName: "jsc", title: "Release\xa0JSC\xa0Tests\xa0EWS"}, -
trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py
r248272 r249046 40 40 # These queue names are from shortname in https://trac.webkit.org/browser/webkit/trunk/Tools/BuildSlaveSupport/ews-build/config.json 41 41 # FIXME: Auto-generate this list https://bugs.webkit.org/show_bug.cgi?id=195640 42 ALL_QUEUES = [' ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',43 'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', ' style', 'webkitperl', 'webkitpy', 'win', 'services']44 ENABLED_QUEUES = [' ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',42 ALL_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo', 43 'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'webkitperl', 'webkitpy', 'win', 'services'] 44 ENABLED_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo', 45 45 'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'webkitperl', 'webkitpy', 'services'] 46 46 # FIXME: Auto-generate the queue's trigger relationship -
trunk/Tools/BuildSlaveSupport/ews-build/config.json
r248972 r249046 456 456 "builderNames": ["Bindings-Tests-EWS", "GTK-Webkit2-EWS", "iOS-12-Build-EWS", "iOS-12-Simulator-Build-EWS", 457 457 "macOS-High-Sierra-Debug-Build-EWS", "macOS-High-Sierra-Release-Build-EWS", 458 "Services-EWS", " WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS"]458 "Services-EWS", "Style-EWS", "WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS"] 459 459 }, 460 460 { … … 462 462 "name": "disabled", 463 463 "port": 5556, 464 "builderNames": ["JSC-Tests-EWS", " Style-EWS", "Windows-EWS"]464 "builderNames": ["JSC-Tests-EWS", "Windows-EWS"] 465 465 }, 466 466 { -
trunk/Tools/ChangeLog
r249039 r249046 1 2019-08-23 Aakash Jain <aakash_jain@apple.com> 2 3 [ews] Enable Style queue on new EWS 4 https://bugs.webkit.org/show_bug.cgi?id=201071 5 6 Reviewed by Jonathan Bedard. 7 8 * BuildSlaveSupport/ews-build/config.json: Enabled the scheduler for Style queue. 9 * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled style queue bubble on new EWS. 10 * QueueStatusServer/config/queues.py: Removed style queue from old EWS. 11 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js: 12 (BubbleQueueServer): Removed style queue from bot-watcher's dashboard. 13 1 14 2019-08-22 Fujii Hironori <Hironori.Fujii@sony.com> 2 15 -
trunk/Tools/QueueStatusServer/config/queues.py
r248088 r249046 33 33 all_queue_names = [ 34 34 "commit-queue", 35 "style-queue",36 35 "jsc-ews", 37 36 "jsc-mips-ews",
Note:
See TracChangeset
for help on using the changeset viewer.