Title: [273581] trunk/Tools
Revision
273581
Author
aakash_j...@apple.com
Date
2021-02-26 12:31:04 -0800 (Fri, 26 Feb 2021)

Log Message

[ews] Commit queue should show commit identifier every time it updates local checkout
https://bugs.webkit.org/show_bug.cgi?id=222287

Reviewed by Jonathan Bedard.

* CISupport/ews-build/factories.py:
(CommitQueueFactory.__init__): Added ShowIdentifier step.
* CISupport/ews-build/factories_unittest.py: Updated unit-test.

Modified Paths

Diff

Modified: trunk/Tools/CISupport/ews-build/factories.py (273580 => 273581)


--- trunk/Tools/CISupport/ews-build/factories.py	2021-02-26 20:27:14 UTC (rev 273580)
+++ trunk/Tools/CISupport/ews-build/factories.py	2021-02-26 20:31:04 UTC (rev 273581)
@@ -276,6 +276,7 @@
         self.addStep(RunWebKitTests())
         self.addStep(ValidatePatch(addURLs=False, verifycqplus=True))
         self.addStep(CheckOutSource())
+        self.addStep(ShowIdentifier())
         self.addStep(UpdateWorkingDirectory())
         self.addStep(ApplyPatch())
         self.addStep(CreateLocalGITCommit())

Modified: trunk/Tools/CISupport/ews-build/factories_unittest.py (273580 => 273581)


--- trunk/Tools/CISupport/ews-build/factories_unittest.py	2021-02-26 20:27:14 UTC (rev 273580)
+++ trunk/Tools/CISupport/ews-build/factories_unittest.py	2021-02-26 20:31:04 UTC (rev 273581)
@@ -425,6 +425,7 @@
             _BuildStepFactory(steps.RunWebKitTests),
             _BuildStepFactory(steps.ValidatePatch, addURLs=False, verifycqplus=True),
             _BuildStepFactory(steps.CheckOutSource),
+            _BuildStepFactory(steps.ShowIdentifier),
             _BuildStepFactory(steps.UpdateWorkingDirectory),
             _BuildStepFactory(steps.ApplyPatch),
             _BuildStepFactory(steps.CreateLocalGITCommit),

Modified: trunk/Tools/ChangeLog (273580 => 273581)


--- trunk/Tools/ChangeLog	2021-02-26 20:27:14 UTC (rev 273580)
+++ trunk/Tools/ChangeLog	2021-02-26 20:31:04 UTC (rev 273581)
@@ -1,5 +1,16 @@
 2021-02-26  Aakash Jain  <aakash_j...@apple.com>
 
+        [ews] Commit queue should show commit identifier every time it updates local checkout
+        https://bugs.webkit.org/show_bug.cgi?id=222287
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/ews-build/factories.py:
+        (CommitQueueFactory.__init__): Added ShowIdentifier step.
+        * CISupport/ews-build/factories_unittest.py: Updated unit-test.
+
+2021-02-26  Aakash Jain  <aakash_j...@apple.com>
+
         Remove old buildbot version from webkitpy autoinstaller
         https://bugs.webkit.org/show_bug.cgi?id=222272
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to