Using Gradle, how can I print how long each task took to execute? -
right now, 1 of gradle targets run frequently, output looks this:
:dataplanner:clean :common:clean :server:clean :simulator:clean :util:clean :util:compilejava :util:processresources up-to-date :util:classes :util:compiletestjava :util:processtestresources :util:testclasses :util:test :util:jar :common:compilejava :common:processresources up-to-date :common:classes :common:compiletestjava :common:processtestresources
how more this?
:dataplanner:clean took 2secs :common:clean took 2 secs :server:clean took 3 secs :simulator:clean took 4 secs :util:clean took 1 sec ...
if it's not possible every task print duration upon completion, printing timestamp acceptable alternative.
any ideas?
modifying 1 of proposed solutions didn't work me, 1 did:
gradle.taskgraph.beforetask { task task -> task.ext.setproperty("starttime", new java.util.date()) } gradle.taskgraph.aftertask { task task, taskstate state -> int secs = ( new java.util.date().gettime() - task.ext.starttime.gettime() ) / 1000 int mins = secs / 60 if ( 4 < secs ) { int sec = secs - mins * 60 println " -> took " + mins + ( ( 1 == mins ) ? " min " : " mins " ) + sec + ( ( 1 == sec ) ? " sec" : " secs" ) } }
you add pre , post execution hooks this. before task execution add current time property on task, , after execution can compare current time saved time.
import java.time.* gradle.taskgraph.beforetask { task task -> task.ext.setproperty("starttime", instant.now()) } gradle.taskgraph.aftertask { task task, taskstate state -> println task.name + " took " + duration.between(task.ext.starttime, instant.now()).toseconds() + " seconds" }
results in output this:
$gradle clean :clean clean took 0.043000000 seconds
Comments
Post a Comment