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

Unified Diff: Tools/GardeningServer/ui/ct-failing-builders.html

Issue 371133003: Add failed builders to sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: async instead of endMicrotask Created 6 years, 5 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: Tools/GardeningServer/ui/ct-failing-builders.html
diff --git a/Tools/GardeningServer/ui/ct-failing-builders.html b/Tools/GardeningServer/ui/ct-failing-builders.html
new file mode 100644
index 0000000000000000000000000000000000000000..a3d821b6d4ac8de84b09c1383cf5ef2b885f9405
--- /dev/null
+++ b/Tools/GardeningServer/ui/ct-failing-builders.html
@@ -0,0 +1,37 @@
+<!--
+Copyright 2014 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="ct-builder.html">
+
+<!-- Lists builders that are failing and the problematic steps. -->
+<polymer-element name="ct-failing-builders" attributes="builders">
+ <template>
+ <style>
+ :host {
+ display: block;
+ font-size: 0;
+ }
+
+ ct-builder {
+ display: inline-block;
+ margin: 0 5px 2px 0;
+ }
+ </style>
+ <template repeat="{{ builder in builders|keys }}">
+ <ct-builder builderName="{{ builder }}" steps="{{ builders[builder] }}">
+ </ct-builder>
+ </template>
+ </template>
+ <script>
+ Polymer({
+ builders: {},
+
+ keys: function(obj) {
+ return Object.keys(obj);
+ },
+ });
+ </script>
+</polymer-element>
« no previous file with comments | « Tools/GardeningServer/ui/ct-builder-tests.html ('k') | Tools/GardeningServer/ui/ct-failing-builders-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698