[% WRAPPER layout.tt title="Build $id of job $project.name:$jobset.name:$job.name" %]
[% PROCESS common.tt %]
[% PROCESS "product-list.tt" %]
[% USE HTML %]
[% USE Date %]
[% project = build.project %]
[% jobset = build.jobset %]
[% job = build.job %]
[% isAggregate = constituents ? 1 : 0 %]
[% BLOCK renderOutputs %]
[% start=1; FOREACH output IN outputs %]
[% IF !start %],
[% END; start=0; output.path %]
[% END %]
[% END %]
[% BLOCK renderBuildSteps %]
Nr | What | Duration | Machine | Status |
---|---|---|---|---|
[% step.stepnr %] | [% IF step.type == 0 %] Build of [% INCLUDE renderOutputs outputs=step.buildstepoutputs %] [% ELSE %] Substitution of [% INCLUDE renderOutputs outputs=step.buildstepoutputs %] [% END %] | [% IF step.busy == 0; INCLUDE renderDuration duration = step.stoptime - step.starttime; ELSIF build.finished; INCLUDE renderDuration duration = build.stoptime - step.starttime; ELSE; INCLUDE renderDuration duration = curTime - step.starttime; END %] | [% step.machine.split('@').1 %] | [% IF step.busy == 1 %] Building [% ELSIF step.status == 0 %] Succeeded [% ELSIF step.status == 4 %] Aborted [% ELSIF step.status == 7 %] Timed out [% ELSIF step.status == 8 %] Cached failure [% ELSE %] Failed: [% HTML.escape(step.errormsg) %] [% END %] [%%] [%+ IF has_log; INCLUDE renderLogLinks url=log inRow=1; END %] |
You can reproduce this build on your own machine by downloading url) %]>a script that checks out all inputs of the build and then invokes Nix to perform the build. This script requires that you have Nix on your system.
To download and execute the script from the command line, run the following command:
$ bash <(curl url) %]>[% HTML.escape(url) %])[% END %] [% END %]
[% INCLUDE renderBuildStatusIcon size=128, build=build %] |
|
Note: this build is no longer available.
[% END %] [% INCLUDE renderProductList latestRoot=['/job' build.project.name build.jobset.name build.job.name 'latest'] %] [% END %] [% IF build.busy %]Last successful build [% INCLUDE renderDateTime timestamp = prevSuccessfulBuild.timestamp %] | [% IF prevSuccessfulBuild && firstBrokenBuild && firstBrokenBuild.id != build.id %]First broken build [% INCLUDE renderDateTime timestamp = firstBrokenBuild.timestamp %] log diff | [% END %]This build [% INCLUDE renderDateTime timestamp = build.timestamp %] log diff |
---|---|---|
[% INCLUDE renderBuildStatusIcon build=prevSuccessfulBuild size=32 %] [% INCLUDE renderBuildLink build=prevSuccessfulBuild %] | [% IF prevSuccessfulBuild && firstBrokenBuild && firstBrokenBuild.id != build.id %][% INCLUDE renderBuildStatusIcon build=firstBrokenBuild size=32 %] [% INCLUDE renderBuildLink build=firstBrokenBuild %] | [% END %][% INCLUDE renderBuildStatusIcon build=build size=32 %] [% INCLUDE renderBuildLink build=build %] |
[% IF prevSuccessfulBuild && firstBrokenBuild && firstBrokenBuild.id != build.id %] | [% INCLUDE renderInputDiff inputs1=prevSuccessfulBuild.inputs inputs2=firstBrokenBuild.inputs %] | [% END %][% INCLUDE renderInputDiff inputs1=prevSuccessfulBuild.inputs inputs2=build.inputs %] |
[% HTML.escape(build.errormsg) %][% END %] [% END %] [% IF logtext %]
[% HTML.escape(logtext) %][% END %]
This build is an aggregate of the following builds:
[% INCLUDE renderBuildList builds=constituents %]Nix expression: | file [% HTML.escape(build.nixexprpath) %] in input [% HTML.escape(build.nixexprinput) %] |
---|---|
Nix name: | [% build.nixname %] |
Short description: | [% IF build.description %][% HTML.escape(build.description) %][% ELSE %]not given[% END %] |
Long description: | [% IF build.longdescription %][% HTML.escape(build.longdescription) %][% ELSE %]not given[% END %] |
License: | [% IF build.license %][% HTML.escape(build.license) %][% ELSE %]not given[% END %] |
Homepage: | [% IF build.homepage %] build.homepage) %]>[% HTML.escape(build.homepage) %][% ELSE %]not given[% END %] |
Maintainer(s): | [% IF build.maintainers %][% HTML.escape(build.maintainers) %][% ELSE %]not given[% END %] |
System: | [% build.system %] |
Derivation store path: | [% build.drvpath %] |
Output store paths: | [% INCLUDE renderOutputs outputs=build.buildoutputs %] |
Queued: | [% INCLUDE renderDateTime timestamp = build.timestamp %] |
Build started: | [% INCLUDE renderDateTime timestamp = build.starttime %] |
Build finished: | [% INCLUDE renderDateTime timestamp = build.stoptime %] |
Priority: | [% build.priority %] |
Availability: | [% IF !available %] Build output is no longer available [% ELSIF build.keep %] Build output will be kept permanently [% ELSE %] Build output is available, but may be garbage-collected [% END %] |
The following builds have used this build as an input:
Build | Input name | System | Timestamp |
---|---|---|---|
[% INCLUDE renderFullBuildLink build=input.build %] | [% input.name %] | [% input.build.system %] | [% INCLUDE renderDateTime timestamp = input.build.timestamp %] |