summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/task.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/task.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/task.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/task.html b/bitbake/lib/toaster/toastergui/templates/task.html
index 5c32250bed..c1504b6041 100644
--- a/bitbake/lib/toaster/toastergui/templates/task.html
+++ b/bitbake/lib/toaster/toastergui/templates/task.html
@@ -25,7 +25,7 @@
25 <dl class="dl-horizontal"> 25 <dl class="dl-horizontal">
26 {% if task.logfile %} 26 {% if task.logfile %}
27 <dt> 27 <dt>
28 <i class="icon-question-sign get-help" title="The location in disk of the task log file"></i> Log file 28 <i class="icon-question-sign get-help" title="Path the task log file"></i> Log file
29 </dt> 29 </dt>
30 <dd> 30 <dd>
31 <code>{{task.logfile}}</code> 31 <code>{{task.logfile}}</code>
@@ -46,10 +46,10 @@
46{# not executed tasks outcome #} 46{# not executed tasks outcome #}
47 {% if task.outcome == task.OUTCOME_PREBUILT %} 47 {% if task.outcome == task.OUTCOME_PREBUILT %}
48 {% if not showing_matches %} 48 {% if not showing_matches %}
49 <a class="btn" href="javascript:reload_params({'show_matches' : 'true' })">Match to tasks in previous builds <i class="icon-question-sign get-help" style="margin-top:20px;" data-toggle="tooltip" title="This will show you a list of tasks from previous builds with the same inputs signature as this prebuilt task. Any of them could be the task that generated the output this prebuilt task is reusing"></i></a> 49 <a class="btn" href="javascript:reload_params({'show_matches' : 'true' })">Match to tasks in previous builds <i class="icon-question-sign get-help" style="margin-top:20px;" data-toggle="tooltip" title="This shows you a list of tasks from previous builds with the same signature generated from the same inputs as used in the prebuilt task. Any of them could be the task that generated the output this prebuilt task is reusing"></i></a>
50 {% elif matching_tasks %} 50 {% elif matching_tasks %}
51 <h3 class="details">Prebuilt task could be based on 51 <h3 class="details">Prebuilt task could be based on
52 <i class="icon-question-sign get-help heading-help" title="This table shows a list of tasks from previous builds with the same inputs signature as the prebuilt task. Any of them could be the task that generated the output the prebuilt task is reusing"></i> 52 <i class="icon-question-sign get-help heading-help" title="This table shows a list of tasks from previous builds with the same signature generated from the same inputs as used in the prebuilt task. Any of them could be the task that generated the output this prebuilt task is reusing"></i>
53 </h3> 53 </h3>
54 <table class="table table-bordered table-hover"> 54 <table class="table table-bordered table-hover">
55 <thead> 55 <thead>
@@ -62,11 +62,11 @@
62 Task 62 Task
63 </th> 63 </th>
64 <th> 64 <th>
65 <i class="icon-question-sign get-help" title="This value tells you if a task had to run in order to generate the task output (executed), or if the output was provided by another task and therefore the task didn't need to run (not executed)"></i> 65 <i class="icon-question-sign get-help" title="This value tells you if a task had to run (executed) in order to generate the task output, or if the output was provided by another task and therefore the task didn't need to run (not executed)"></i>
66 Executed 66 Executed
67 </th> 67 </th>
68 <th> 68 <th>
69 <i class="icon-question-sign get-help" title="This column tells you if executed tasks succeeded, failed or reused output from the sstate-cache directory or mirrors. It also tells you why not executed tasks did not need to run"></i> 69 <i class="icon-question-sign get-help" title="This column tells you if 'executed' tasks succeeded or failed. The column also tells you why 'not executed' tasks did not need to run"></i>
70 Outcome 70 Outcome
71 </th> 71 </th>
72 <th> 72 <th>
@@ -116,7 +116,7 @@
116 {%elif task.outcome == task.OUTCOME_CACHED%} 116 {%elif task.outcome == task.OUTCOME_CACHED%}
117 <dl class="dl-horizontal"> 117 <dl class="dl-horizontal">
118 <dt> 118 <dt>
119 <i class="icon-question-sign get-help" title="The location in disk of the task log file"></i> Log file 119 <i class="icon-question-sign get-help" title="Path the task log file"></i> Log file
120 </dt> 120 </dt>
121 <dd> 121 <dd>
122 <code>{% for t in task.get_related_setscene %} {{t.logfile}} {% endfor %}</code> 122 <code>{% for t in task.get_related_setscene %} {{t.logfile}} {% endfor %}</code>
@@ -133,11 +133,11 @@
133 {% if task.task_executed %} 133 {% if task.task_executed %}
134 <h2> 134 <h2>
135 Executed 135 Executed
136 <i class="icon-question-sign get-help heading-help" title="Executed tasks are those that need to run in order to generate the task output"></i> 136 <i class="icon-question-sign get-help heading-help" title="'Executed' tasks are those that need to run in order to generate the task output"></i>
137 {% else %} 137 {% else %}
138 <h2 class="muted"> 138 <h2 class="muted">
139 Not Executed 139 Not Executed
140 <i class="icon-question-sign get-help heading-help" title="Not executed tasks don't need to run because their outcome is provided by another task"></i> 140 <i class="icon-question-sign get-help heading-help" title="'Not executed' tasks don't need to run because their outcome is provided by another task"></i>
141 {% endif %} 141 {% endif %}
142 </h2> 142 </h2>
143<dl class="dl-horizontal"> 143<dl class="dl-horizontal">
@@ -151,7 +151,7 @@
151 {% if task.sstate_result != task.SSTATE_NA %} 151 {% if task.sstate_result != task.SSTATE_NA %}
152 </dl> 152 </dl>
153 <div class="alert alert-info">Attempting to restore output from sstate cache 153 <div class="alert alert-info">Attempting to restore output from sstate cache
154 <i class="icon-question-sign get-help get-help-blue" title="The build system is searching for the task output in your <code>sstate-cache</code> directory and mirrors. If it finds it, it will use it instead of building it from scratch by running the real task. This makes the build faster"></i> 154 <i class="icon-question-sign get-help get-help-blue" title="The build system is searching for the task output in your <code>sstate-cache</code> directory and mirrors. If the build system finds the task output, it will reuse it instead of building it from scratch by running the real task. Reusing the task output makes the build faster"></i>
155 </div> 155 </div>
156 <dl class="dl-horizontal"> 156 <dl class="dl-horizontal">
157 <dt> 157 <dt>
@@ -160,7 +160,7 @@
160 </dt> 160 </dt>
161 <dd><code>{{task.path_to_sstate_obj}}</code></dd> 161 <dd><code>{{task.path_to_sstate_obj}}</code></dd>
162 <dt> 162 <dt>
163 <i class="icon-question-sign get-help" title="The locations where the above file was searched: your <code>sstate-cache</code> directory and the mirrors you have set up (if any)"></i> 163 <i class="icon-question-sign get-help" title="The locations searched for the above file (i.e. your <code>sstate-cache</code> directory and any mirrors you have set up)"></i>
164 URI(s) searched 164 URI(s) searched
165 </dt> 165 </dt>
166 <dd><code>{{task.work_directory}}</code></dd> 166 <dd><code>{{task.work_directory}}</code></dd>
@@ -176,12 +176,12 @@
176 </div> 176 </div>
177 <dl class="dl-horizontal"> 177 <dl class="dl-horizontal">
178 <dt> 178 <dt>
179 <i class="icon-question-sign get-help" title="The location in disk of the cache attempt log file"></i> 179 <i class="icon-question-sign get-help" title="Path to the cache attempt log file"></i>
180 Log file 180 Log file
181 </dt> 181 </dt>
182 <dd><code>{{task.logfile}}</code></dd> 182 <dd><code>{{task.logfile}}</code></dd>
183 <dt> 183 <dt>
184 <i class="icon-question-sign get-help" title="How long it took the cache attempt to finish, expressed in seconds"></i> 184 <i class="icon-question-sign get-help" title="How long it took the cache attempt to finish in seconds"></i>
185 Time (secs) 185 Time (secs)
186 </dt> 186 </dt>
187 <dd>{{task.elapsed_time|format_none_and_zero}}</dd> 187 <dd>{{task.elapsed_time|format_none_and_zero}}</dd>
@@ -202,7 +202,7 @@
202 <dd><a href="{%url "tasks_task" build.pk task.order %}#{{task.order}}">{{task.order}}</a></dd> 202 <dd><a href="{%url "tasks_task" build.pk task.order %}#{{task.order}}">{{task.order}}</a></dd>
203 {% if task.task_executed %} 203 {% if task.task_executed %}
204 <dt> 204 <dt>
205 <i class="icon-question-sign get-help" title="If this task executes a Python or Shell function(s)"></i> 205 <i class="icon-question-sign get-help" title="Indicates if this task executes a Python or Shell function(s)"></i>
206 Task script type 206 Task script type
207 </dt> 207 </dt>
208 <dd>{{task.get_script_type_display}}</dd> 208 <dd>{{task.get_script_type_display}}</dd>
@@ -215,7 +215,7 @@
215 <dd><code>{{task.source_url}}</code></dd> 215 <dd><code>{{task.source_url}}</code></dd>
216--> 216-->
217 <dt> 217 <dt>
218 <i class="icon-question-sign get-help" title="Task dependency chain (other tasks)"></i> 218 <i class="icon-question-sign get-help" title="Task dependency chain (i.e. other tasks)"></i>
219 Dependencies 219 Dependencies
220 </dt> 220 </dt>
221 <dd> 221 <dd>
@@ -228,7 +228,7 @@
228 </ul> 228 </ul>
229 </dd> 229 </dd>
230 <dt> 230 <dt>
231 <i class="icon-question-sign get-help" title="Which other tasks depend on this task"></i> 231 <i class="icon-question-sign get-help" title="Tasks that depend on this task"></i>
232 Reverse dependencies 232 Reverse dependencies
233 </dt> 233 </dt>
234 <dd> 234 <dd>
@@ -248,14 +248,14 @@
248 <dl class="dl-horizontal"> 248 <dl class="dl-horizontal">
249 {% if task.elapsed_time %} 249 {% if task.elapsed_time %}
250 <dt> 250 <dt>
251 <i class="icon-question-sign get-help" title="How long it took the task to finish, expressed in seconds"></i> 251 <i class="icon-question-sign get-help" title="How long it took the task to finish in seconds"></i>
252 Time (secs) 252 Time (secs)
253 </dt> 253 </dt>
254 <dd>{{task.elapsed_time|format_none_and_zero|floatformat:2}}</dd> 254 <dd>{{task.elapsed_time|format_none_and_zero|floatformat:2}}</dd>
255 {% endif %} 255 {% endif %}
256 {% if task.cpu_usage > 0 %} 256 {% if task.cpu_usage > 0 %}
257 <dt> 257 <dt>
258 <i class="icon-question-sign get-help" title="Task CPU utilisation, expressed as a percentage"></i> 258 <i class="icon-question-sign get-help" title="The percentage of task CPU utilization"></i>
259 CPU usage 259 CPU usage
260 </dt> 260 </dt>
261 <dd>{{task.cpu_usage|format_none_and_zero|floatformat:2}}%</dd> 261 <dd>{{task.cpu_usage|format_none_and_zero|floatformat:2}}%</dd>