build.tt: Show jobset eval inputs instead of build inputs
We're not recording build inputs anymore, so we now just show all inputs of the build's first evaluation.
This commit is contained in:
parent
01f4037d6f
commit
b04c8adbd5
|
@ -366,6 +366,8 @@
|
||||||
|
|
||||||
<div id="tabs-buildinputs" class="tab-pane">
|
<div id="tabs-buildinputs" class="tab-pane">
|
||||||
|
|
||||||
|
[% IF build.inputs.size > 0 %]
|
||||||
|
|
||||||
[% INCLUDE renderInputs inputs=build.inputs %]
|
[% INCLUDE renderInputs inputs=build.inputs %]
|
||||||
|
|
||||||
[% IF prevBuild %]
|
[% IF prevBuild %]
|
||||||
|
@ -373,6 +375,12 @@
|
||||||
[% INCLUDE renderInputDiff inputs2=build.inputs inputs1=prevBuild.inputs %]
|
[% INCLUDE renderInputDiff inputs2=build.inputs inputs1=prevBuild.inputs %]
|
||||||
[% END %]
|
[% END %]
|
||||||
|
|
||||||
|
[% ELSIF eval %]
|
||||||
|
|
||||||
|
[% INCLUDE renderInputs inputs=eval.jobsetevalinputs %]
|
||||||
|
|
||||||
|
[% END %]
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
[% IF build.buildsteps %]
|
[% IF build.buildsteps %]
|
||||||
|
|
Loading…
Reference in a new issue