Title: [243174] trunk/Tools
Revision
243174
Author
aakash_j...@apple.com
Date
2019-03-19 15:22:50 -0700 (Tue, 19 Mar 2019)

Log 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):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-build/steps.py (243173 => 243174)


--- trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-03-19 22:11:00 UTC (rev 243173)
+++ trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-03-19 22:22:50 UTC (rev 243174)
@@ -95,7 +95,13 @@
                                                 progress=True,
                                                 **kwargs)
 
+    def getResultSummary(self):
+        if self.results != SUCCESS:
+            return {u'step': u'Failed to updated working directory'}
+        else:
+            return {u'step': u'Cleaned and updated working directory'}
 
+
 class CleanWorkingDirectory(shell.ShellCommand):
     name = 'clean-working-directory'
     description = ['clean-working-directory running']

Modified: trunk/Tools/ChangeLog (243173 => 243174)


--- trunk/Tools/ChangeLog	2019-03-19 22:11:00 UTC (rev 243173)
+++ trunk/Tools/ChangeLog	2019-03-19 22:22:50 UTC (rev 243174)
@@ -1,3 +1,13 @@
+2019-03-19  Aakash Jain  <aakash_j...@apple.com>
+
+        [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):
+
 2019-03-19  Daniel Bates  <daba...@apple.com>
 
         [iOS] Focus not preserved when switching between tabs
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to