Title: [219118] trunk/Tools
Revision
219118
Author
mcatanz...@igalia.com
Date
2017-07-04 07:02:42 -0700 (Tue, 04 Jul 2017)

Log Message

[WPE] Add WPE to bot watcher dashboard
https://bugs.webkit.org/show_bug.cgi?id=174119

Reviewed by Alexey Proskuryakov.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/CREDIT: Added.
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/WPE.png: Added.
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/w...@2x.png: Added.
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js:
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js:
(WebKitBuildbot):
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css:
(table.queue-grid tr.platform.linux-wpe img.logo):

Modified Paths

Added Paths

Diff

Added: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/CREDIT (0 => 219118)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/CREDIT	                        (rev 0)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/CREDIT	2017-07-04 14:02:42 UTC (rev 219118)
@@ -0,0 +1,6 @@
+The Tux images in this directory are downloaded from Wikimedia Commons:
+
+https://en.wikipedia.org/wiki/File:Classic_flat_look_3D.svg
+
+License: "The copyright holder of this file allows anyone to use it for any purpose,
+provided that you acknowledge lew...@isc.tamu.edu and The GIMP if someone asks."

Added: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/WPE.png


(Binary files differ)
Index: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/WPE.png =================================================================== --- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/WPE.png 2017-07-04 11:43:14 UTC (rev 219117) +++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/WPE.png 2017-07-04 14:02:42 UTC (rev 219118) Property changes on: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/WPE.png ___________________________________________________________________

Added: svn:mime-type

+image/png \ No newline at end of property

Added: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/w...@2x.png


(Binary files differ)
Index: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/w...@2x.png =================================================================== --- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/w...@2x.png 2017-07-04 11:43:14 UTC (rev 219117) +++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/w...@2x.png 2017-07-04 14:02:42 UTC (rev 219118) Property changes on: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/w...@2x.png ___________________________________________________________________

Added: svn:mime-type

+image/png \ No newline at end of property

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js (219117 => 219118)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js	2017-07-04 11:43:14 UTC (rev 219117)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js	2017-07-04 14:02:42 UTC (rev 219118)
@@ -35,7 +35,8 @@
         Windows8: { name: "windows-8", readableName: "Windows 8", order: 50 },
         Windows7: { name: "windows-7", readableName: "Windows 7", order: 60 },
         WindowsXP: { name: "windows-xp", readableName: "Windows XP", order: 70 },
-        LinuxGTK: { name : "linux-gtk", readableName: "Linux GTK", order: 90 }
+        LinuxGTK: { name : "linux-gtk", readableName: "Linux GTK", order: 90 },
+        LinuxWPE: { name : "linux-wpe", readableName: "Linux WPE", order: 91 }
     },
     Branch: {},
     Repository: {

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js (219117 => 219118)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js	2017-07-04 11:43:14 UTC (rev 219117)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js	2017-07-04 14:02:42 UTC (rev 219118)
@@ -71,7 +71,9 @@
         "GTK Linux 64-bit Release (Tests)": {platform: Dashboard.Platform.LinuxGTK, debug: false, tester: true, testCategory: Buildbot.TestCategory.WebKit2},
         "GTK Linux 64-bit Debug (Build)": {platform: Dashboard.Platform.LinuxGTK, debug: true, builder: true, architecture: Buildbot.BuildArchitecture.SixtyFourBit},
         "GTK Linux 64-bit Debug (Tests)": {platform: Dashboard.Platform.LinuxGTK, debug: true, tester: true, testCategory: Buildbot.TestCategory.WebKit2},
-        "GTK Linux 64-bit Release (Perf)": {platform: Dashboard.Platform.LinuxGTK, debug: false, performance: true, heading: "Performance"}
+        "GTK Linux 64-bit Release (Perf)": {platform: Dashboard.Platform.LinuxGTK, debug: false, performance: true, heading: "Performance"},
+        "WPE Linux 64-bit Release (Build)": {platform: Dashboard.Platform.LinuxWPE, debug: false, builder: true, architecture: Buildbot.BuildArchitecture.SixtyFourBit},
+        "WPE Linux 64-bit Release (Tests)": {platform: Dashboard.Platform.LinuxWPE, debug: false, tester: true, testCategory: Buildbot.TestCategory.WebKit2}
     };
 
     Buildbot.call(this, "https://build.webkit.org/", queueInfo);

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css (219117 => 219118)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css	2017-07-04 11:43:14 UTC (rev 219117)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css	2017-07-04 14:02:42 UTC (rev 219118)
@@ -218,6 +218,10 @@
     content: -webkit-image-set(url(../Images/g...@2x.png) 2x, url(../Images/GTK.png) 1x);
 }
 
+table.queue-grid tr.platform.linux-wpe img.logo {
+    content: -webkit-image-set(url(../Images/w...@2x.png) 2x, url(../Images/WPE.png) 1x);
+}
+
 .popover-tracking:hover {
     text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2)
 }

Modified: trunk/Tools/ChangeLog (219117 => 219118)


--- trunk/Tools/ChangeLog	2017-07-04 11:43:14 UTC (rev 219117)
+++ trunk/Tools/ChangeLog	2017-07-04 14:02:42 UTC (rev 219118)
@@ -1,3 +1,19 @@
+2017-07-04  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        [WPE] Add WPE to bot watcher dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=174119
+
+        Reviewed by Alexey Proskuryakov.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/CREDIT: Added.
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/WPE.png: Added.
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/w...@2x.png: Added.
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js:
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js:
+        (WebKitBuildbot):
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css:
+        (table.queue-grid tr.platform.linux-wpe img.logo):
+
 2017-07-03  Lucas Forschler  <lforsch...@apple.com>
 
         https://bugs.webkit.org/show_bug.cgi?id=174105
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to