Sort build steps

This commit is contained in:
Eelco Dolstra 2015-12-14 13:01:35 +01:00
parent 8f7614030e
commit e04fb5c8e7

View file

@ -6,7 +6,7 @@
[%
isAggregate = constituents.size > 0;
steps = build.buildsteps;
steps = build.buildsteps.nsort('stepnr').reverse;
busy = 0;
FOR step IN steps; IF step.busy; busy = 1; END; END;
%]
@ -23,7 +23,7 @@ FOR step IN steps; IF step.busy; busy = 1; END; END;
<tr><th>Nr</th><th>What</th><th>Duration</th><th>Machine</th><th>Status</th></tr>
</thead>
<tbody>
[% FOREACH step IN steps.reverse %]
[% FOREACH step IN steps %]
[% IF ( type == "All" ) || ( type == "Failed" && step.status != 0 ) || ( type == "Running" && step.busy == 1 ) %]
[% has_log = seen.${step.drvpath} ? 0 : buildStepLogExists(step);
seen.${step.drvpath} = 1;