]> git.ipfire.org Git - pbs.git/blob - src/templates/job-schedule-test.html
Use autotools
[pbs.git] / src / templates / job-schedule-test.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Schedule test build for %s") % job.name }}{% end block %}
4
5 {% block body %}
6 <ul class="breadcrumb">
7 <li>
8 <a href="/">{{ _("Home") }}</a>
9 <span class="divider">/</span>
10 </li>
11 <li>
12 <a href="/packages">{{ _("Packages") }}</a>
13 <span class="divider">/</span>
14 </li>
15 <li>
16 <a href="/package/{{ build.pkg.name }}">{{ build.pkg.name }}</a>
17 <span class="divider">/</span>
18 </li>
19 <li>
20 <a href="/build/{{ build.uuid }}">{{ build.pkg.friendly_version }}</a>
21 <span class="divider">/</span>
22 </li>
23 <li class="active">
24 <a href="/build/{{ build.uuid }}/schedule?type=test">{{ _("Schedule test build") }}</a>
25 </li>
26 </ul>
27
28 <div class="page-header">
29 <h1>{{ _("Schedule test build for %s") % build.name }}</h1>
30 </div>
31
32 <div class="row">
33 <div class="span6 offset3">
34 <p>
35 {{ _("A test build is used to check if a package builds with the current package set.") }}
36 {{ _("In this way, developers are able to find quality issues fast and without actively searching for them.") }}
37 </p>
38 <p>
39 {{ _("As this build platform only has a limited amount of performance, test builds only have a very less priority.") }}
40 {{ _("However, you can manually request to run a test.") }}
41 </p>
42 <p>
43 {{ _("The build job will be started when a build slot is available but not before the given time.") }}
44 {{ _("Please note, that all other kinds of build are preferred over the test builds.") }}
45 </p>
46
47 {% module BuildOffset() %}
48 </div>
49 </div>
50 {% end block %}