Title: [238960] trunk/Tools
Revision
238960
Author
aakash_j...@apple.com
Date
2018-12-07 10:53:34 -0800 (Fri, 07 Dec 2018)

Log Message

[ews-app] Send bug id as a build property
https://bugs.webkit.org/show_bug.cgi?id=192494

Reviewed by Lucas Forschler.

* BuildSlaveSupport/ews-app/ews/fetcher.py:
(BugzillaPatchFetcher.fetch):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-app/ews/fetcher.py (238959 => 238960)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews/fetcher.py	2018-12-07 18:51:39 UTC (rev 238959)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/fetcher.py	2018-12-07 18:53:34 UTC (rev 238960)
@@ -62,7 +62,7 @@
                 _log.warn('Patch is obsolete, skipping')
                 Patch.set_obsolete(patch_id)
                 continue
-            rc = Buildbot.send_patch_to_buildbot(bz_patch['path'], properties=['patch_id={}'.format(patch_id)])
+            rc = Buildbot.send_patch_to_buildbot(bz_patch['path'], properties=['patch_id={}'.format(patch_id), 'bug_id={}'.format(bz_patch['bug_id'])])
             if rc == 0:
                 Patch.set_bug_id(patch_id, bz_patch['bug_id'])
                 Patch.set_sent_to_buildbot(patch_id)

Modified: trunk/Tools/ChangeLog (238959 => 238960)


--- trunk/Tools/ChangeLog	2018-12-07 18:51:39 UTC (rev 238959)
+++ trunk/Tools/ChangeLog	2018-12-07 18:53:34 UTC (rev 238960)
@@ -1,5 +1,15 @@
 2018-12-07  Aakash Jain  <aakash_j...@apple.com>
 
+        [ews-app] Send bug id as a build property
+        https://bugs.webkit.org/show_bug.cgi?id=192494
+
+        Reviewed by Lucas Forschler.
+
+        * BuildSlaveSupport/ews-app/ews/fetcher.py:
+        (BugzillaPatchFetcher.fetch):
+
+2018-12-07  Aakash Jain  <aakash_j...@apple.com>
+
         [ews-build] Builds should have a link to patch and bug
         https://bugs.webkit.org/show_bug.cgi?id=192492
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to