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

Side by Side Diff: appengine/findit/templates/waterfall/compile_failure.html

Issue 1924173003: [Findit] Fix urls in dashboard and result page and prevent duplicated culprits in dashboard. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: . Created 4 years, 7 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <head> 2 <head>
3 <title>Compile Failure</title> 3 <title>Compile Failure</title>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="/common.css"> 5 <link rel="stylesheet" href="/common.css">
6 <style> 6 <style>
7 .pending { 7 .pending {
8 color: #666666; 8 color: #666666;
9 background-color: #fffc6c; 9 background-color: #fffc6c;
10 border-color: #c5c56d; 10 border-color: #c5c56d;
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 <b>Try-job Result:</b><br> 209 <b>Try-job Result:</b><br>
210 Status: <span class="{{try_job.status}}">{{try_job.status}}</span> 210 Status: <span class="{{try_job.status}}">{{try_job.status}}</span>
211 {% if try_job.url %} 211 {% if try_job.url %}
212 <a href="{{try_job.url}}">try-job</a> 212 <a href="{{try_job.url}}">try-job</a>
213 {% endif %} 213 {% endif %}
214 <br> 214 <br>
215 {% if try_job.completed %} 215 {% if try_job.completed %}
216 {% if try_job.failed %} 216 {% if try_job.failed %}
217 <span class="error">Try job ran into error!</span> 217 <span class="error">Try job ran into error!</span>
218 {% elif try_job.culprit %} 218 {% elif try_job.culprit %}
219 Culprit: {{try_job.culprit.repo_name or 'chromium'}} <a href="{{try_job. culprit.review_url}}">{{try_job.culprit.commit_position or try_job.culprit.revis ion}}</a> 219 Culprit: {{try_job.culprit.repo_name or 'chromium'}} <a href="{{try_job. culprit.url or try_job.culprit.review_url}}">{{try_job.culprit.commit_position o r try_job.culprit.revision}}</a>
220 {% else %} 220 {% else %}
221 <div>No culprit found!</div> 221 <div>No culprit found!</div>
222 {% endif%} 222 {% endif%}
223 {% endif%} 223 {% endif%}
224 </div> 224 </div>
225 <br> 225 <br>
226 {% endif%} 226 {% endif%}
227 227
228 <b>Heuristic analysis result:</b> 228 <b>Heuristic analysis result:</b>
229 <div id="heuristic-analysis"> 229 <div id="heuristic-analysis">
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 appearing in the failure log. (eg: file.h was changed and 331 appearing in the failure log. (eg: file.h was changed and
332 file_unittest.cc or file_impl.cc appeared in the log.)</li> 332 file_unittest.cc or file_impl.cc appeared in the log.)</li>
333 <li>1: The CL rolled a dependency within src/DEPS and a file of that 333 <li>1: The CL rolled a dependency within src/DEPS and a file of that
334 dependency appears in the failure log. (eg: third_party/dep 334 dependency appears in the failure log. (eg: third_party/dep
335 was changed in src/DEPS and third_party/dep/f.cpp appeared 335 was changed in src/DEPS and third_party/dep/f.cpp appeared
336 in the log.)</li> 336 in the log.)</li>
337 </ul> 337 </ul>
338 (More rules will be added when implemented.) 338 (More rules will be added when implemented.)
339 </div> 339 </div>
340 </body> 340 </body>
OLDNEW
« no previous file with comments | « appengine/findit/templates/list_analyses.html ('k') | appengine/findit/waterfall/identify_try_job_culprit_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698