WebKit Bugzilla
Attachment 370148 Details for
Bug 197996
: [ews-build] Add clickable url in UI for uploaded S3 archive
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197996-20190517170126.patch (text/plain), 1.51 KB, created by
Aakash Jain
on 2019-05-17 14:01:29 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-05-17 14:01:29 PDT
Size:
1.51 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 245476) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,12 @@ >+2019-05-17 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-build] Add clickable url in UI for uploaded S3 archive >+ https://bugs.webkit.org/show_bug.cgi?id=197996 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-build/steps.py: >+ > 2019-05-17 Keith Rollin <krollin@apple.com> > > Unreviewed build fix. >Index: Tools/BuildSlaveSupport/ews-build/steps.py >=================================================================== >--- Tools/BuildSlaveSupport/ews-build/steps.py (revision 245476) >+++ Tools/BuildSlaveSupport/ews-build/steps.py (working copy) >@@ -790,7 +790,17 @@ class TransferToS3(master.MasterShellCom > kwargs['command'] = self.command > master.MasterShellCommand.__init__(self, logEnviron=False, **kwargs) > >+ def start(self): >+ self.log_observer = logobserver.BufferLogObserver(wantStderr=True) >+ self.addLogObserver('stdio', self.log_observer) >+ return super(TransferToS3, self).start() >+ > def finished(self, results): >+ log_text = self.log_observer.getStdout() + self.log_observer.getStderr() >+ match = re.search(r'S3 URL: (?P<url>[^\s]+)', log_text) >+ if match: >+ self.addURL('uploaded archive', match.group('url')) >+ > if results == SUCCESS: > triggers = self.getProperty('triggers', None) > if triggers:
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 197996
:
370148
|
370153