Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Building large projects

thanks, i'll try adding timestamps

On 10/09/2013 11:55, tycho-user-request@xxxxxxxxxxx wrote:
Date: Tue, 10 Sep 2013 11:24:10 +0200
From: Pierre-Charles David<pierre-charles.david@xxxxxxx>
To:tycho-user@xxxxxxxxxxx
Subject: Re: [tycho-user] Building large projects
Message-ID:<522EE53A.90602@xxxxxxx>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Le 10/09/2013 10:23, Mickael Istria a ?crit :
>On 09/10/2013 07:48 AM, Krzysztof Daniel wrote:
>>No. You can't speed up your current set-up. Platform build time was
>>increased from 15 minutes to almost 2 hours.
>Do you know if someone ever tried to run a profiler against a long
>Tycho execution to find out which parts are the most time consuming?
It is not as precise as a profiler, but sometimes I use this trick to
add timestamps to my build log and later identify the steps which take a
long time:

% mvn clean package | perl -MPOSIX -ne '$|=1; print
POSIX::strftime("%s", localtime) . " $_"' | tee ~/build.log





Back to the top