]> git.ipfire.org Git - people/jschlag/pbs.git/blame - src/templates/docs-build.html
Drop ETA guessing which was never really accurate
[people/jschlag/pbs.git] / src / templates / docs-build.html
CommitLineData
9137135a
MT
1{% extends "docs-base.html" %}
2
f6e6ff79 3{% block title %}{{ _("Documentation") }} - {{ _("Legend of the build states") }}{% end block %}
9137135a
MT
4
5{% block body %}
f6e6ff79
MT
6 <ul class="breadcrumb">
7 <li>
8 <a href="/">{{ _("Home") }}</a>
9 <span class="divider">/</span>
10 </li>
11 <li>
12 <a href="/documents">{{ _("Documentation") }}</a>
13 <span class="divider">/</span>
14 </li>
15 <li class="active">
16 <a href="/documents/builds">{{ _("Builds") }}</a>
17 </li>
18 </ul>
19
20 <div class="page-header">
21 <h1>{{ _("Documentation") }}: {{ _("Legend of the build states") }}</h1>
22 </div>
23
9137135a
MT
24 <p>
25 {{ _("Every build that is done by the Pakfire Build Service has to go through several states:") }}
26 </p>
27 <p>
28 {{ _("After checking out the source from the source repository a source package is created and submitted to the build server.") }}
29 {{ _("Starting from inserting a source file to the build service, there are binary build jobs created for every supported architecture.") }}
30 </p>
31 <p>
32 {{ _("These get assigned to a build host which has to compile or assemble the package and return it back to the build server.") }}
33 {{ _("In the table below, there are all states that a build job goes through:") }}
34 </p>
35 <ul class="builds">
36 <li><a class="build running" name="#">{{ _("Build is running") }}</a></li>
37 <li><a class="build failed" name="#">{{ _("Build has failed") }}</a></li>
38 <li><a class="build pending" name="#">{{ _("Build is waiting to be processed") }}</a></li>
39 <li><a class="build dependency_error" name="#">{{ _("There was a dependency error when the package was built") }}</a></li>
40 <li><a class="build waiting" name="#">{{ _("Build is waiting for source to go to pending state") }}</a></li>
41 <li><a class="build dispatching" name="#">{{ _("Files of this build are transferred to the build server") }}</a></li>
42 <li><a class="build uploading" name="#">{{ _("Files are being uploaded to the service") }}</a></li>
43 <li><a class="build unknown" name="#">{{ _("Build has an unknown state") }}</a></li>
44 </ul>
45{% end %}