Title: [269423] trunk/Tools
Revision
269423
Author
[email protected]
Date
2020-11-05 04:17:19 -0800 (Thu, 05 Nov 2020)

Log Message

Don't mark TransferToS3 as failed if it was skipped
https://bugs.webkit.org/show_bug.cgi?id=218606

Patch by Angelos Oikonomopoulos <[email protected]> on 2020-11-05
Reviewed by Aakash Jain.

* CISupport/ews-build/steps.py:
(TransferToS3.getResultSummary):

Modified Paths

Diff

Modified: trunk/Tools/CISupport/ews-build/steps.py (269422 => 269423)


--- trunk/Tools/CISupport/ews-build/steps.py	2020-11-05 11:10:38 UTC (rev 269422)
+++ trunk/Tools/CISupport/ews-build/steps.py	2020-11-05 12:17:19 UTC (rev 269423)
@@ -2414,7 +2414,7 @@
         return results == SUCCESS and self.getProperty('sensitive', False)
 
     def getResultSummary(self):
-        if self.results != SUCCESS:
+        if self.results == FAILURE:
             return {u'step': u'Failed to transfer archive to S3'}
         return super(TransferToS3, self).getResultSummary()
 

Modified: trunk/Tools/ChangeLog (269422 => 269423)


--- trunk/Tools/ChangeLog	2020-11-05 11:10:38 UTC (rev 269422)
+++ trunk/Tools/ChangeLog	2020-11-05 12:17:19 UTC (rev 269423)
@@ -1,3 +1,13 @@
+2020-11-05  Angelos Oikonomopoulos  <[email protected]>
+
+        Don't mark TransferToS3 as failed if it was skipped
+        https://bugs.webkit.org/show_bug.cgi?id=218606
+
+        Reviewed by Aakash Jain.
+
+        * CISupport/ews-build/steps.py:
+        (TransferToS3.getResultSummary):
+
 2020-11-05  Rob Buis  <[email protected]>
 
         Update my information in contributors.json
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to