Title: [279908] trunk/Tools
Revision
279908
Author
[email protected]
Date
2021-07-14 04:55:18 -0700 (Wed, 14 Jul 2021)

Log Message

Add step name and description to InstallBuiltProduct build step
https://bugs.webkit.org/show_bug.cgi?id=227935

Reviewed by Carlos Alberto Lopez Perez.

* CISupport/build-webkit-org/steps.py:
(InstallBuiltProduct):
* CISupport/ews-build/steps.py:
(InstallBuiltProduct):

Modified Paths

Diff

Modified: trunk/Tools/CISupport/build-webkit-org/steps.py (279907 => 279908)


--- trunk/Tools/CISupport/build-webkit-org/steps.py	2021-07-14 10:53:59 UTC (rev 279907)
+++ trunk/Tools/CISupport/build-webkit-org/steps.py	2021-07-14 11:55:18 UTC (rev 279908)
@@ -324,9 +324,13 @@
 
 
 class InstallBuiltProduct(shell.ShellCommand):
+    name = 'install-built-product'
+    description = ['Installing Built Product']
+    descriptionDone = ['Installed Built Product']
     command = ["python3", "Tools/Scripts/install-built-product",
                WithProperties("--platform=%(fullPlatform)s"), WithProperties("--%(configuration)s")]
 
+
 class ArchiveBuiltProduct(shell.ShellCommand):
     command = ["python3", "Tools/CISupport/built-product-archive",
                WithProperties("--platform=%(fullPlatform)s"), WithProperties("--%(configuration)s"), "archive"]

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


--- trunk/Tools/CISupport/ews-build/steps.py	2021-07-14 10:53:59 UTC (rev 279907)
+++ trunk/Tools/CISupport/ews-build/steps.py	2021-07-14 11:55:18 UTC (rev 279908)
@@ -2034,9 +2034,13 @@
 
 
 class InstallBuiltProduct(shell.ShellCommand):
+    name = 'install-built-product'
+    description = ['Installing Built Product']
+    descriptionDone = ['Installed Built Product']
     command = ["python3", "Tools/Scripts/install-built-product",
                WithProperties("--platform=%(fullPlatform)s"), WithProperties("--%(configuration)s")]
 
+
 class CleanBuild(shell.Compile):
     name = 'delete-WebKitBuild-directory'
     description = ['deleting WebKitBuild directory']

Modified: trunk/Tools/ChangeLog (279907 => 279908)


--- trunk/Tools/ChangeLog	2021-07-14 10:53:59 UTC (rev 279907)
+++ trunk/Tools/ChangeLog	2021-07-14 11:55:18 UTC (rev 279908)
@@ -1,3 +1,15 @@
+2021-07-14  Aakash Jain  <[email protected]>
+
+        Add step name and description to InstallBuiltProduct build step
+        https://bugs.webkit.org/show_bug.cgi?id=227935
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        * CISupport/build-webkit-org/steps.py:
+        (InstallBuiltProduct):
+        * CISupport/ews-build/steps.py:
+        (InstallBuiltProduct):
+
 2021-07-13  Jonathan Bedard  <[email protected]>
 
         [webkitscmpy] Handle failed `git log` process
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to