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

Side by Side Diff: milo/appengine/frontend/expectations/swarming.build-build-gerrit.html

Issue 2949783002: [milo] appengine/* -> * (Closed)
Patch Set: rebase Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1
2 <!DOCTYPE html>
3
4 <html lang="en">
5 <meta charset="utf-8">
6 <title>
7
8 Running
9
10 -
11
12 2d8d62f6be545b10
13 </title>
14 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css">
15 <link rel="stylesheet" href="/static/common/third_party/css/jquery-ui.min.css" t ype="text/css">
16 <script src="/static/common/third_party/js/moment-with-locales.min.js"></script>
17 <script src="/static/common/third_party/js/moment-timezone-with-data-2012-2022.m in.js"></script>
18 <script src="/static/common/js/time.js"></script>
19 <script src="/static/common/third_party/js/jquery.min.js"></script>
20 <script src="/static/common/third_party/js/jquery-ui.min.js"></script>
21
22 <link id="favicon" rel="shortcut icon" type="image/png" href="/static/common/fav icon/yellow-32.png">
23
24
25
26 <body class="interface">
27 <header>
28 Luci
29 <div>
30
31 <a href="http://fake.example.com/login?dest=%2Ffoobar">login</a>
32
33 </div>
34 </header>
35 <hr>
36
37 <div class="content">
38 <h1>
39
40 Build 2d8d62f6be545b10
41
42 </h1>
43
44 <div class="column">
45
46 <h2>Results:</h2>
47
48
49 <p class="running result">Build Running
50
51 <span class="subtitle">
52 <div class="step-text">Running recipe bootstrap</div>
53 </span>
54 </p>
55
56
57
58
59
60
61 <h2>SourceStamp:</h2>
62
63 <table class="info" width="100%">
64
65
66
67
68
69
70
71
72
73
74 <tr><td class="left">Patch</td><td><a href="https://chromium-review.goog lesource.com/c/513444/32">Gerrit CL</a></td></tr>
75
76
77 </table>
78
79
80
81
82 <h2>Execution:</h2>
83 <ul>
84
85 <li>
86 Source:
87 <a href="https://example.com/task?id=2d8d62f6be545b10&amp;show_raw=1&a mp;wide_logs=true">Task 2d8d62f6be545b10</a>
88 </li>
89
90
91
92
93
94 </ul>
95
96
97
98
99
100
101
102 <h2>Steps and Logfiles:</h2>
103 Show:
104 <input type="radio" name="hider" id="showAll">
105 <label for="showAll">All</label>
106 <input type="radio" name="hider" id="showStandard" checked>
107 <label for="showStandard">Standard</label>
108 <input type="radio" name="hider" id="showInteresting">
109 <label for="showInteresting">Non-Green Only</label>
110 <ol id="steps" class="standard">
111
112
113
114 <li class="verbosity-Hidden">
115 <div class="status-Running result">
116 <span class="duration"
117 data-starttime="2016-03-14T10:00:01Z"
118 data-endtime="0001-01-01T00:00:00Z">
119 ( 59 mins 58 secs )</span>
120 <b>Steps</b>
121 </div>
122 <ul>
123
124 <li class="sublink"><a href="foo/stdout">stdout</a></li>
125
126 </ul>
127 </li>
128
129
130
131
132 <li class="verbosity-Normal">
133 <div class="status-Running result">
134 <span class="duration"
135 data-starttime="2016-03-14T10:00:02Z"
136 data-endtime="0001-01-01T00:00:00Z">
137 ( 59 mins 58 secs )</span>
138 <b>recipe bootstrap</b>
139 <span>
140
141 </span>
142 </div>
143 <ul>
144
145 <li class="sublink"><a href="foo/steps/recipe_bootstrap/0/stdout ">stdout</a></li>
146
147 <li class="sublink"><a href="https://chromium.googlesource.com/e xternal/github.com/luci/recipes-py/&#43;/master/doc/workflow.md">Confused? READM E here</a></li>
148
149
150 </ul>
151 </li>
152
153 </ol>
154
155
156 </div>
157
158 <div class="column">
159
160 <h2>Build Properties:</h2>
161
162 <table class="info BuildProperties" width="100%">
163 <tr><th>Name</th><th>Value</th><th>Source</th></tr>
164
165
166
167
168
169
170
171
172 </table>
173
174
175
176 <h2>Timing:</h2>
177 <table class="info" width="100%">
178 <tr class="alt"><td class="left">Start</td>
179 <td>
180 <span class="local-time" data-timestamp="1457949601850">Monday, 14-Mar -16 10:00:01 UTC</span>
181 </td></tr>
182 <tr><td class="left">End</td>
183 <td>
184 N/A
185 </td></tr>
186 <tr class="alt"><td class="left">Elapsed</td>
187 <td id="duration">
188
189 59 mins 58 secs
190
191 </td></tr>
192 </table>
193
194 </div>
195
196
197 </div>
198 </div>
199 <script language="javascript">
200 $(document).ready(function() {
201
202 var check = function(className) {
203 $("#steps").removeClass("all standard interesting").addClass(className)
204 }
205
206 $("#showInteresting").click(function(e) {
207 check("interesting");
208 });
209 $("#showStandard").click(function(e) {
210 check("standard");
211 });
212 $("#showAll").click(function(e) {
213 check("all");
214 });
215
216 $("input[name='hider']").each(function(){
217 if ($(this).prop("checked")) {
218 $(this).click();
219 }
220 });
221 });
222 </script>
223
224 <footer>
225 <hr>
226 <a href="https://github.com/luci">luci</a>,
227 working for the <a href="https://chromium.org/">Chromium</a> project.<br>
228 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b>
229 </footer>
230 <script>
231 (function () {
232 'use strict';
233 milo.makeTimesLocal();
234 milo.annotateDurations();
235 $(document).tooltip({
236 show: false,
237 hide: false
238 });
239 })();
240 </script>
241 <script>
242 (function(i,s,o,g,r,a,m){i['CrDXObject']=r;i[r]=i[r]||function(){
243 (i[r].q=i[r].q||[]).push(arguments)},a=s.createElement(o),
244 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a ,m)
245 })(window,document,'script','https://storage.googleapis.com/crdx-feedback.ap pspot.com/feedback.js','crdx');
246
247 crdx('setFeedbackButtonLink', 'https://bugs.chromium.org/p/chromium/issues/ent ry?cc=hinoka@chromium.org&components=Infra%3EPlatform%3EMilo');
248 </script>
249
250 <script>
251 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){
252 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o),
253 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m)
254 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga');
255
256 ga('create', 'UA-12345-01', 'auto');
257 ga('send', 'pageview');
258 </script>
259
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698