⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243174 in webkit


Ignore:
Timestamp:
Mar 19, 2019, 3:22:50 PM (7 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-build] Improve summary for CheckOutSource step
https://bugs.webkit.org/show_bug.cgi?id=195963

Reviewed by Lucas Forschler.

  • BuildSlaveSupport/ews-build/steps.py:

(CheckOutSource.getResultSummary):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-build/steps.py

    r242969 r243174  
    9696                                                **kwargs)
    9797
     98    def getResultSummary(self):
     99        if self.results != SUCCESS:
     100            return {u'step': u'Failed to updated working directory'}
     101        else:
     102            return {u'step': u'Cleaned and updated working directory'}
     103
    98104
    99105class CleanWorkingDirectory(shell.ShellCommand):
  • trunk/Tools/ChangeLog

    r243153 r243174  
     12019-03-19  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-build] Improve summary for CheckOutSource step
     4        https://bugs.webkit.org/show_bug.cgi?id=195963
     5
     6        Reviewed by Lucas Forschler.
     7
     8        * BuildSlaveSupport/ews-build/steps.py:
     9        (CheckOutSource.getResultSummary):
     10
    1112019-03-19  Daniel Bates  <dabates@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.