Skip to main content

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

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