Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: appengine/swarming/templates/user_task.html

Issue 2043853002: Complete CIPD integration (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@run-isolated-cipd
Patch Set: rebased and nit Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/swarming/templates/user_task.html
diff --git a/appengine/swarming/templates/user_task.html b/appengine/swarming/templates/user_task.html
index 9d189f137ee6050b166b35fc80bccf4e5e608fc5..b69a642466ad87103c2f824ac2ffc99a95075f87 100644
--- a/appengine/swarming/templates/user_task.html
+++ b/appengine/swarming/templates/user_task.html
@@ -219,6 +219,20 @@
<td>Idempotent</td>
<td>{{request.properties.idempotent}}</td>
</tr>
+ {% if request.properties.cipd_input %}
+ <tr title="CIPD server">
+ <td>CIPD server</td>
+ <td>{{request.properties.cipd_input.server}}</td>
+ </tr>
+ <tr title="CIPD client">
+ <td>CIPD client</td>
+ <td>{{request.properties.cipd_input.client_package}}</td>
+ </tr>
+ <tr title="CIPD pacakges">
+ <td>CIPD packages</td>
+ <td>{{request.properties.cipd_input.packages|join('<br>'|safe)}}</td>
+ </tr>
+ {% endif %}
{% if request.properties.inputs_ref and request.properties.inputs_ref.isolated %}
<tr title="Inputs files">
<td>Isolated inputs</td>
@@ -430,6 +444,10 @@
<td>{{task.duration_now(now)|timedeltaformat(include_ms=True)}}</td>
</tr>
{% if task.performance_stats_key %}
+ <tr title="Overhead from installing CIPD packages">
+ <td>Overhead CIPD packages</td>
+ <td>{{task.overhead_package_installation|timedeltaformat(include_ms=True)}}</td>
+ </tr>
<tr title="Overhead from installing isolated inputs">
<td>Overhead isolated inputs</td>
<td>{{task.overhead_isolated_inputs|timedeltaformat(include_ms=True)}}</td>

Powered by Google App Engine
This is Rietveld 408576698