diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/task.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/task.html | 36 |
1 files changed, 1 insertions, 35 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/task.html b/bitbake/lib/toaster/toastergui/templates/task.html index 6e06ddfa31..635098a024 100644 --- a/bitbake/lib/toaster/toastergui/templates/task.html +++ b/bitbake/lib/toaster/toastergui/templates/task.html | |||
@@ -23,18 +23,7 @@ | |||
23 | {%if task.task_executed %} | 23 | {%if task.task_executed %} |
24 | {# executed tasks outcome #} | 24 | {# executed tasks outcome #} |
25 | {% if task.logfile %} | 25 | {% if task.logfile %} |
26 | {% if MANAGED and build.project %} | ||
27 | <a class="btn btn-large" href="{% url 'build_artifact' build.id "tasklogfile" task.pk %}" style="margin:15px;">Download task log</a> | 26 | <a class="btn btn-large" href="{% url 'build_artifact' build.id "tasklogfile" task.pk %}" style="margin:15px;">Download task log</a> |
28 | {% else %} | ||
29 | <dl class="dl-horizontal"> | ||
30 | <dt> | ||
31 | <i class="icon-question-sign get-help" title="Path the task log file"></i> Log file | ||
32 | </dt> | ||
33 | <dd> | ||
34 | <code>{{task.logfile}}</code> | ||
35 | </dd> | ||
36 | </dl> | ||
37 | {% endif %} | ||
38 | {% endif %} | 27 | {% endif %} |
39 | {# show stack trace for failed task #} | 28 | {# show stack trace for failed task #} |
40 | {% if task.outcome == task.OUTCOME_FAILED and log_head %} | 29 | {% if task.outcome == task.OUTCOME_FAILED and log_head %} |
@@ -130,22 +119,12 @@ | |||
130 | </dd> | 119 | </dd> |
131 | </dl> | 120 | </dl> |
132 | {%elif task.outcome == task.OUTCOME_CACHED%} | 121 | {%elif task.outcome == task.OUTCOME_CACHED%} |
133 | {% if MANAGED and build.project %} | ||
134 | {% for t in task.get_related_setscene %} | 122 | {% for t in task.get_related_setscene %} |
135 | {% if forloop.last %} | 123 | {% if forloop.last %} |
136 | <a class="btn btn-large" href="{% url 'build_artifact' build.id "tasklogfile" t.pk %}" style="margin:15px;">Download task log</a> | 124 | <a class="btn btn-large" href="{% url 'build_artifact' build.id "tasklogfile" t.pk %}" style="margin:15px;">Download task log</a> |
137 | {% endif %} | 125 | {% endif %} |
138 | {% endfor %} | 126 | {% endfor %} |
139 | {% else %} | 127 | |
140 | <dl class="dl-horizontal"> | ||
141 | <dt> | ||
142 | <i class="icon-question-sign get-help" title="Path the task log file"></i> Log file | ||
143 | </dt> | ||
144 | <dd> | ||
145 | <code>{% for t in task.get_related_setscene %} {{t.logfile}} {% endfor %}</code> | ||
146 | </dd> | ||
147 | </dl> | ||
148 | {% endif %} | ||
149 | {%elif task.outcome == task.OUTCOME_EMPTY%} | 128 | {%elif task.outcome == task.OUTCOME_EMPTY%} |
150 | <div class="alert alert-info details"> | 129 | <div class="alert alert-info details"> |
151 | This task is empty because it has the <code>noexec</code> flag set to <code>1</code>, or the task function is empty | 130 | This task is empty because it has the <code>noexec</code> flag set to <code>1</code>, or the task function is empty |
@@ -200,20 +179,7 @@ | |||
200 | <strong>Failed</strong> to restore output from sstate cache. The file was found but could not be unpacked. | 179 | <strong>Failed</strong> to restore output from sstate cache. The file was found but could not be unpacked. |
201 | </div> | 180 | </div> |
202 | <dl class="dl-horizontal"> | 181 | <dl class="dl-horizontal"> |
203 | {% if MANAGED and build.project %} | ||
204 | <a href="{% url 'build_artifact' build.id "tasklogfile" task.pk %}" style="margin:15px;">Download log</a> | 182 | <a href="{% url 'build_artifact' build.id "tasklogfile" task.pk %}" style="margin:15px;">Download log</a> |
205 | {% else %} | ||
206 | <dt> | ||
207 | <i class="icon-question-sign get-help" title="Path to the cache attempt log file"></i> | ||
208 | Log file | ||
209 | </dt> | ||
210 | <dd><code>{{task.logfile}}</code></dd> | ||
211 | <dt> | ||
212 | <i class="icon-question-sign get-help" title="How long it took the cache attempt to finish in seconds"></i> | ||
213 | Time (secs) | ||
214 | </dt> | ||
215 | <dd>{{task.elapsed_time|format_none_and_zero}}</dd> | ||
216 | {% endif %} | ||
217 | </dl> | 183 | </dl> |
218 | <div class="alert alert-info"> | 184 | <div class="alert alert-info"> |
219 | Running the real task instead. | 185 | Running the real task instead. |