Changeset 243823 in webkit
- Timestamp:
- Apr 3, 2019, 1:27:12 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
BuildSlaveSupport/ews-app/ews/views/statusbubble.py (modified) (2 diffs)
-
ChangeLog (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py
r243761 r243823 41 41 'mac-debug', 'mac-debug-wk1', 'mac-wk1', 'mac-wk2', 'style', 'webkitperl', 'webkitpy', 'win', 'wincairo', 'wpe'] 42 42 ENABLED_QUEUES = ['api-ios', 'api-mac', 'webkitperl'] 43 44 STEPS_TO_HIDE = ['Killed old processes', 'Configured build', '^OS:.*Xcode:'] 43 45 44 46 def _build_bubble(self, patch, queue): … … 121 123 122 124 def _steps_messages(self, build): 123 return '\n'.join([step.state_string for step in build.step_set.all()]) 125 return '\n'.join([step.state_string for step in build.step_set.all() if self._should_display_step(step)]) 126 127 def _should_display_step(self, step): 128 return not filter(lambda step_to_hide: re.search(step_to_hide, step.state_string), StatusBubble.STEPS_TO_HIDE) 124 129 125 130 def _most_recent_step_message(self, build): -
trunk/Tools/ChangeLog
r243822 r243823 1 2019-04-03 Aakash Jain <aakash_jain@apple.com> 2 3 [ews-app] Status bubble should not display certain infrastructure status messages 4 https://bugs.webkit.org/show_bug.cgi?id=196550 5 6 Reviewed by Lucas Forschler. 7 8 Do not display the steps which are un-needed for end-user. This information is still avaiable 9 if the user click on the bubble and look at the Buildbot build. 10 * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: 11 (StatusBubble._steps_messages): 12 (StatusBubble._should_display_step): Method to decide whether to display the step or not. 13 1 14 2019-04-03 Aakash Jain <aakash_jain@apple.com> 2 15
Note:
See TracChangeset
for help on using the changeset viewer.