]> git.ipfire.org Git - pbs.git/commitdiff
web: Drop unused schedule test build template
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 17 Oct 2022 17:08:46 +0000 (17:08 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 17 Oct 2022 17:08:46 +0000 (17:08 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Makefile.am
src/templates/build-schedule-test.html [deleted file]

index 6608a9bf6c4e75d6fdd2804efdfd7d6b22362935..8afbc4fe78bc8610c17a97038ff68fa5a683aae3 100644 (file)
@@ -157,7 +157,6 @@ webdir = $(buildservicedir)/web
 dist_templates_DATA = \
        src/templates/base.html \
        src/templates/build-manage.html \
-       src/templates/build-schedule-test.html \
        src/templates/build-state.html \
        src/templates/distro-edit.html \
        src/templates/distro-source-commit-detail.html \
diff --git a/src/templates/build-schedule-test.html b/src/templates/build-schedule-test.html
deleted file mode 100644 (file)
index 1f85abe..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}{{ _("Schedule test build for %s") % build.name }}{% end block %}
-
-{% block body %}
-       <ul class="breadcrumb">
-               <li>
-                       <a href="/">{{ _("Home") }}</a>
-                       <span class="divider">/</span>
-               </li>
-               <li>
-                       <a href="/packages">{{ _("Packages") }}</a>
-                       <span class="divider">/</span>
-               </li>
-               <li>
-                       <a href="/package/{{ build.pkg.name }}">{{ build.pkg.name }}</a>
-                       <span class="divider">/</span>
-               </li>
-               <li>
-                       <a href="/build/{{ build.uuid }}">{{ build.pkg.friendly_version }}</a>
-                       <span class="divider">/</span>
-               </li>
-               <li class="active">
-                       <a href="/build/{{ build.uuid }}/schedule?type=test">{{ _("Schedule test build") }}</a>
-               </li>
-       </ul>
-
-       <div class="page-header">
-               <h1>{{ _("Schedule test build for %s") % job.name }}</h1>
-       </div>
-
-       <div class="row">
-               <div class="span6 offset3">
-                       <p>
-                               {{ _("A test build is used to check if a package builds with the current package set.") }}
-                               {{ _("In this way, developers are able to find quality issues fast and without actively searching for them.") }}
-                       </p>
-                       <p>
-                               {{ _("As this build platform only has a limited amount of performance, test builds only have a very less priority.") }}
-                               {{ _("However, you can manually request to run a test.") }}
-                       </p>
-                       <p>
-                               {{ _("The build job will be started when a build slot is available but not before the given time.") }}
-                       </p>
-
-                       {% module BuildOffset() %}
-               </div>
-       </div>
-{% end block %}