diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-06-17 17:30:34 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-26 09:27:32 +0100 |
commit | 70c4eb8d3acaad267ee943ebfba793f9cc1c5ee6 (patch) | |
tree | 416f9dcf9c16014e1fc2b975a1de01b286847e25 /bitbake/lib/toaster/toastergui/templates/tasks.html | |
parent | 287b49a35b3f06b302ee199ed4b2d123f1aae58c (diff) | |
download | poky-70c4eb8d3acaad267ee943ebfba793f9cc1c5ee6.tar.gz |
bitbake: toaster: refactor build model
We remove the "timespent", "errors_no" and "warnings_no" fields
in favor of computing the needed values at runtime. This prevents
inconsistencies in the UI.
Also removeing all references to BuildRequests from the interface -
all build details now display in the build dashboard.
Minor fixes related to data logging.
(Bitbake rev: 44f37394ed3e4ca02f940be172fe4395b0ee0f7d)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/tasks.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/tasks.html | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/tasks.html b/bitbake/lib/toaster/toastergui/templates/tasks.html index 32c0552360..b18b5c7c46 100644 --- a/bitbake/lib/toaster/toastergui/templates/tasks.html +++ b/bitbake/lib/toaster/toastergui/templates/tasks.html | |||
@@ -93,7 +93,7 @@ | |||
93 | </td> | 93 | </td> |
94 | <td class="outcome"> | 94 | <td class="outcome"> |
95 | <a href="{%url "task" build.pk task.pk%}">{{task.get_outcome_display}} </a> | 95 | <a href="{%url "task" build.pk task.pk%}">{{task.get_outcome_display}} </a> |
96 | {% if MANAGED and build.project and task.outcome = task.OUTCOME_FAILED %} | 96 | {% if task.outcome = task.OUTCOME_FAILED %} |
97 | <a href="{% url 'build_artifact' build.pk "tasklogfile" task.pk %}"> | 97 | <a href="{% url 'build_artifact' build.pk "tasklogfile" task.pk %}"> |
98 | <i class="icon-download-alt" title="Download task log file"></i> | 98 | <i class="icon-download-alt" title="Download task log file"></i> |
99 | </a> | 99 | </a> |
@@ -113,11 +113,6 @@ | |||
113 | {{task.disk_io|format_none_and_zero}} | 113 | {{task.disk_io|format_none_and_zero}} |
114 | </td> | 114 | </td> |
115 | 115 | ||
116 | {% if not MANAGED or not build.project %} | ||
117 | <td class="task_log"> | ||
118 | {{task.logfile}} | ||
119 | </td> | ||
120 | {% endif %} | ||
121 | </tr> | 116 | </tr> |
122 | {% endfor %} | 117 | {% endfor %} |
123 | 118 | ||