]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/docs-build.html
Initial import.
[people/jschlag/pbs.git] / data / templates / docs-build.html
1 {% extends "docs-base.html" %}
2
3 {% block title %}{{ _("Legend of the build states") }}{% end block %}
4
5 {% block body %}
6 <h1>{{ _("Legend of the build states") }}</h1>
7 <p>
8 {{ _("Every build that is done by the Pakfire Build Service has to go through several states:") }}
9 </p>
10 <p>
11 {{ _("After checking out the source from the source repository a source package is created and submitted to the build server.") }}
12 {{ _("Starting from inserting a source file to the build service, there are binary build jobs created for every supported architecture.") }}
13 </p>
14 <p>
15 {{ _("These get assigned to a build host which has to compile or assemble the package and return it back to the build server.") }}
16 {{ _("In the table below, there are all states that a build job goes through:") }}
17 </p>
18 <ul class="builds">
19 <li><a class="build running" name="#">{{ _("Build is running") }}</a></li>
20 <li><a class="build failed" name="#">{{ _("Build has failed") }}</a></li>
21 <li><a class="build pending" name="#">{{ _("Build is waiting to be processed") }}</a></li>
22 <li><a class="build dependency_error" name="#">{{ _("There was a dependency error when the package was built") }}</a></li>
23 <li><a class="build waiting" name="#">{{ _("Build is waiting for source to go to pending state") }}</a></li>
24 <li><a class="build dispatching" name="#">{{ _("Files of this build are transferred to the build server") }}</a></li>
25 <li><a class="build uploading" name="#">{{ _("Files are being uploaded to the service") }}</a></li>
26 <li><a class="build unknown" name="#">{{ _("Build has an unknown state") }}</a></li>
27 </ul>
28 {% end %}