Description | Duration |
---|---|
Total Build Time | ${time.format(build.elapsedTotal)} |
Startup | ${time.format(build.elapsedStartup)} |
Settings and BuildSrc | ${time.format(build.elapsedSettings)} |
Loading Projects | ${time.format(build.elapsedProjectsLoading)} |
Configuring Projects | ${time.format(build.elapsedProjectsEvaluated)} |
Task Execution | ${time.format(build.elapsedTotalExecutionTime)} |
Project | Duration |
---|---|
All projects | ${time.format(build.projectConfiguration.elapsedTime)} |
$project.path | ${time.format(project.elapsedTime)} |
Dependencies | Duration |
---|---|
All dependencies | ${time.format(build.dependencySets.elapsedTime)} |
$dependencySet.path | ${time.format(dependencySet.elapsedTime)} |
Task | Duration | Result |
---|---|---|
Project $project.path | ${time.format(project.tasks.elapsedTime)} | (total) |
${task.path} | ${time.format(task.elapsedTime)} | <%= task.state.getSkipped() ? task.state.skipMessage : (task.state.didWork ? '' : 'Did No Work')%> |