[% USE date %] [% inputTypes = { "svn" = "Subversion checkout" , "cvs" = "CVS checkout" , "tarball" = "Download of a tarball" , "string" = "String value" , "boolean" = "Boolean" , "path" = "Local path" , "build" = "Build output" } %] [% BLOCK renderDateTime %] [% date.format(timestamp, '%Y-%m-%d %H:%M:%S') -%] [% END %] [% BLOCK renderProjectName -%] [% project %][% END -%] [% BLOCK renderJobsetName -%] [% jobset %][% END -%] [% BLOCK renderJobName -%] [% job %][% END -%] [% BLOCK renderFullJobName %] [% INCLUDE renderProjectName %]:[% INCLUDE renderJobsetName %]:[% INCLUDE renderJobName %] [% END %] [% BLOCK renderFullJobNameOfBuild %] [% INCLUDE renderFullJobName project=build.get_column("project") jobset = build.get_column("jobset") job = build.get_column("job") %] [% END %] [% BLOCK renderDuration -%] [% IF duration >= 24 * 60 * 60 %][% duration div (24 * 60 * 60) %]d[% END %] [% IF duration >= 60 * 60 %][% duration div (60 * 60) % 24 %]h[% END %] [% IF duration >= 60 %][% duration div 60 % 60 %]m[% END %] [% duration % 60 %]s [% END %] [% BLOCK renderBuildList %] [% IF !hideResultInfo %] [% END %] [% IF showSchedulingInfo %] [% END %] [% odd = 0 %] [% FOREACH build IN builds -%] [% IF !hideResultInfo %] [% END %] [% IF showSchedulingInfo %] [% END %] [% END -%]
#PriorityJob Release Name System Timestamp Description
[% IF build.resultInfo.buildstatus == 0 %] Succeeded [% ELSE %] Failed [% END %] [% build.id %][% build.schedulingInfo.priority %] [% INCLUDE renderFullJobNameOfBuild %] [% build.resultInfo.releasename ? build.resultInfo.releasename : build.nixname %] [% build.system %] [% date.format(build.timestamp, '%Y-%m-%d %H:%M:%S') %] [% build.description %]
[% END %] [% BLOCK showBuildStats %]
Finished builds: [% finishedBuilds %]
Succeeded Succeeded builds: [% succeededBuilds %]
Failed Failed builds: [% finishedBuilds - succeededBuilds %]
Total build time: [% INCLUDE renderDuration duration = totalBuildTime %]
Scheduled builds: [% scheduledBuilds %]
Currently executing builds: [% busyBuilds %]
[% END %] [% BLOCK renderReleaseJobName -%] [% IF job.description; HTML.escape(job.description); ELSE %][% job.job %] ([% job.attrs %])[% END -%] [% END -%]