Title: [240127] trunk/Tools
Revision
240127
Author
aakash_j...@apple.com
Date
2019-01-17 13:24:44 -0800 (Thu, 17 Jan 2019)

Log Message

[ews-build] Add patch author information in build
https://bugs.webkit.org/show_bug.cgi?id=193465

Reviewed by Lucas Forschler.

* BuildSlaveSupport/ews-build/steps.py:
(ValidatePatch._is_patch_obsolete):

Modified Paths

Diff

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


--- trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-01-17 21:14:57 UTC (rev 240126)
+++ trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-01-17 21:24:44 UTC (rev 240127)
@@ -289,6 +289,8 @@
             self._addToLog('stdio', 'Fetched patch id {} does not match with requested patch id {}. Unable to validate.\n'.format(patch_json.get('id'), self.getProperty('patch_id', '')))
             return -1
 
+        patch_author = patch_json.get('creator')
+        self.addURL('Patch by: {}'.format(patch_author), 'mailto:{}'.format(patch_author))
         return patch_json.get('is_obsolete')
 
     def _is_patch_review_denied(self, patch_id):

Modified: trunk/Tools/ChangeLog (240126 => 240127)


--- trunk/Tools/ChangeLog	2019-01-17 21:14:57 UTC (rev 240126)
+++ trunk/Tools/ChangeLog	2019-01-17 21:24:44 UTC (rev 240127)
@@ -1,5 +1,15 @@
 2019-01-17  Aakash Jain  <aakash_j...@apple.com>
 
+        [ews-build] Add patch author information in build
+        https://bugs.webkit.org/show_bug.cgi?id=193465
+
+        Reviewed by Lucas Forschler.
+
+        * BuildSlaveSupport/ews-build/steps.py:
+        (ValidatePatch._is_patch_obsolete):
+
+2019-01-17  Aakash Jain  <aakash_j...@apple.com>
+
         [ews-build] Pass bug_id to the triggered builds
         https://bugs.webkit.org/show_bug.cgi?id=193548
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to