Changeset 252926 in webkit
- Timestamp:
- Nov 28, 2019, 8:03:35 AM (6 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py
r252925 r252926 42 42 ALL_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo', 'win', 43 43 'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'jsc-armv7', 'jsc-mips', 'webkitperl', 'webkitpy', 'services'] 44 ENABLED_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo', 'win',45 'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'jsc-armv7', 'jsc-mips', 'webkitperl', 'webkitpy', 'services']46 44 # FIXME: Auto-generate the queue's trigger relationship 47 45 QUEUE_TRIGGERS = { … … 250 248 return True 251 249 252 def _should_show_bubble_for_queue(self, queue):253 return queue in StatusBubble.ENABLED_QUEUES254 255 250 def _queue_position(self, patch, queue, parent_queue=None): 256 251 # FIXME: Handle retried builds and cancelled build-requests as well. … … 291 286 292 287 for queue in StatusBubble.ALL_QUEUES: 293 if not self._should_show_bubble_for_queue(queue):294 continue295 296 288 bubble = self._build_bubble(patch, queue, hide_icons) 297 289 if bubble: -
trunk/Tools/ChangeLog
r252925 r252926 1 2019-11-28 Aakash Jain <aakash_jain@apple.com> 2 3 Removed ENABLED_QUEUES logic from ews-app 4 https://bugs.webkit.org/show_bug.cgi?id=204683 5 6 Unreviewed minor fix. 7 8 * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: 9 (StatusBubble): Removed ENABLED_QUEUES. 10 (StatusBubble._build_bubbles_for_patch): 11 (StatusBubble._should_show_bubble_for_queue): Deleted. 12 1 13 2019-11-28 Aakash Jain <aakash_jain@apple.com> 2 14
Note:
See TracChangeset
for help on using the changeset viewer.