Re: How to browse the results (target) directory

2014-01-21 Thread Vivekanand S V
You can use wildcards (ant pattern) I think (**/*.log) if you know the extension. or *.* if you need all the files. If both wont work, then you better move the logs to a separate folder (or zip it) during the build process and use that for archiving. On Tue, Jan 21, 2014 at 4:15 PM, Moddy Ʈe'en

Re: How to browse the results (target) directory

2014-01-21 Thread Moddy Ʈe'eni
You mean using Archive the artifacts? I can't do that. There are potentially hundreds of such files, and I don't know their names beforehand. Moddy On Tue, Jan 21, 2014 at 9:07 PM, Maciej Jaros wrote: > Moddy Ʈe'eni (2014-01-21 09:13): > > My testing job (Maven/TestNG) creates logs for failed

Re: How to browse the results (target) directory

2014-01-21 Thread Maciej Jaros
Moddy Ʈe'eni (2014-01-21 09:13): My testing job (Maven/TestNG) creates logs for failed tests. Is there a way to view these logs using jenkins' http server? Currently I have to login into the machine and/or copy files with FTP. My files are under the workspace directory, but I can write them s

How to browse the results (target) directory

2014-01-21 Thread Moddy Ʈe'eni
My testing job (Maven/TestNG) creates logs for failed tests. Is there a way to view these logs using jenkins' http server? Currently I have to login into the machine and/or copy files with FTP. My files are under the workspace directory, but I can write them somewhere else if it makes things ea