WebKit Bugzilla
Attachment 358586 Details for
Bug 193234
: [ews-build] unapply-patch step should not update source
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
ews-build-clean-webkit.patch (text/plain), 1.79 KB, created by
Aakash Jain
on 2019-01-08 07:12:54 PST
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-01-08 07:12:54 PST
Size:
1.79 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 239723) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,14 @@ >+2019-01-08 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-build] unapply-patch step should not update source >+ https://bugs.webkit.org/show_bug.cgi?id=193234 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-build/steps.py: >+ (CleanWorkingDirectory): Use clean-webkit script to clean the working directory. >+ (UnApplyPatchIfRequired): Use CleanWorkingDirectory as base class. >+ > 2019-01-07 David Kilzer <ddkilzer@apple.com> > > Leak of ScrollCompletionCallbackData (16 bytes) in com.apple.WebKit.WebContent running WebKit layout tests >Index: Tools/BuildSlaveSupport/ews-build/steps.py >=================================================================== >--- Tools/BuildSlaveSupport/ews-build/steps.py (revision 239723) >+++ Tools/BuildSlaveSupport/ews-build/steps.py (working copy) >@@ -105,6 +105,14 @@ class CheckOutSource(git.Git): > progress=True, > **kwargs) > >+class CleanWorkingDirectory(shell.ShellCommand): >+ name = 'clean-working-directory' >+ description = ['clean-workring-directory running'] >+ descriptionDone = ['clean-working-directory'] >+ flunkOnFailure = True >+ haltOnFailure = True >+ command = ['Tools/Scripts/clean-webkit'] >+ > > class ApplyPatch(shell.ShellCommand, CompositeStepMixin): > name = 'apply-patch' >@@ -353,7 +361,7 @@ class ValidatePatch(buildstep.BuildStep) > return None > > >-class UnApplyPatchIfRequired(CheckOutSource): >+class UnApplyPatchIfRequired(CleanWorkingDirectory): > name = 'unapply-patch' > > def doStepIf(self, step):
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 193234
:
358586
|
358588