Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-releng-dev] workspace logs on jenkins?

Hi Mickeal,

 

That’s good to know.

 

Regarding the second point,  in my experience the .log is not generated where the maven log indicates. I did not do a full investigation on this but as far as I remember it is generated in data folder directly rather than .metadata. Its better to use regex to get the log for debugging purposes and disable archiving once you are satisfied

 

Thanks

Sravan

 

 

From: Mickael Istria <mistria@xxxxxxxxxx>
Sent: 24 February 2020 13:19
To: Eclipse platform release engineering list. <platform-releng-dev@xxxxxxxxxxx>
Subject: [EXTERNAL] Re: [platform-releng-dev] workspace logs on jenkins?

 

Hi Sravan,

 

On Mon, Feb 24, 2020 at 7:17 AM Sravan K Lakkimsetti <sravankumarl@xxxxxxxxxx> wrote:

I configured to archive all .log files.

 

Using `**` in file capturing regexp is to be avoided as it crawls all files and can lead to a lot of time keeping executor busy. I remember some years ago of a job taking twice as more time to complete as necessary just because half of the time was spent resolving this **.

So this should be avoided.

 

I think we should instead investigate why the `*/target/work/data/.metadata/.log` pattern doesn't capture the log file, with a local build and a `ls */target/work/data/.metadata/.log`

 



Back to the top