Title: [219120] trunk/Tools
Revision
219120
Author
[email protected]
Date
2017-07-04 10:51:30 -0700 (Tue, 04 Jul 2017)

Log Message

[GTK] Add more GTK bots to dashboard
https://bugs.webkit.org/show_bug.cgi?id=174129

Reviewed by Carlos Alberto Lopez Perez.

We have a bunch of GTK bots that I never look at because they're not on the dashboard. Add
them.

This also changes the sort order to put WPE above GTK so that it's not buried under all the
less-essential GTK bots.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js:
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js:
(WebKitBuildbot):

Modified Paths

Diff

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


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js	2017-07-04 17:43:18 UTC (rev 219119)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js	2017-07-04 17:51:30 UTC (rev 219120)
@@ -35,8 +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 },
-        LinuxWPE: { name : "linux-wpe", readableName: "Linux WPE", order: 91 }
+        LinuxWPE: { name : "linux-wpe", readableName: "Linux WPE", order: 90 },
+        LinuxGTK: { name : "linux-gtk", readableName: "Linux GTK", order: 91 }
     },
     Branch: {},
     Repository: {

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


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js	2017-07-04 17:43:18 UTC (rev 219119)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js	2017-07-04 17:51:30 UTC (rev 219120)
@@ -67,13 +67,26 @@
         "Apple Win Release (Build)": {platform: Dashboard.Platform.Windows7, builder: true, architecture: Buildbot.BuildArchitecture.ThirtyTwoBit},
         "Apple Win 7 Debug (Tests)": {platform: Dashboard.Platform.Windows7, debug: true, tester: true, testCategory: Buildbot.TestCategory.WebKit1},
         "Apple Win 7 Release (Tests)": {platform: Dashboard.Platform.Windows7, tester: true, testCategory: Buildbot.TestCategory.WebKit1},
+        "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},
         "GTK Linux 64-bit Release (Build)": {platform: Dashboard.Platform.LinuxGTK, debug: false, builder: true, architecture: Buildbot.BuildArchitecture.SixtyFourBit},
         "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"},
-        "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}
+        "GTK LTS Builders": {platform: Dashboard.Platform.LinuxGTK, heading: "LTS Builders", combinedQueues: {
+            "GTK Linux 64-bit Release Debian Stable (Build)": {heading: "Debian Stable (Build)"},
+            "GTK Linux 64-bit Release Ubuntu LTS (Build)": {heading: "Ubuntu LTS (Build)"},
+        }},
+        "GTK Wayland Testers": {platform: Dashboard.Platform.LinuxGTK, heading: "Wayland", combinedQueues: {
+            "GTK Linux 64-bit Release Wayland (Tests)": {heading: "Wayland"},
+        }},
+        "GTK ARM Testers": {platform: Dashboard.Platform.LinuxGTK, heading: "ARM", combinedQueues: {
+            "GTK Linux ARM Release": {heading: "ARM"}
+        }},
+        "GTK 32-bit Testers": {platform: Dashboard.Platform.LinuxGTK, heading: "32-bit", combinedQueues: {
+            "GTK Linux 32-bit Release": {heading: "32-bit"},
+        }}
     };
 
     Buildbot.call(this, "https://build.webkit.org/", queueInfo);

Modified: trunk/Tools/ChangeLog (219119 => 219120)


--- trunk/Tools/ChangeLog	2017-07-04 17:43:18 UTC (rev 219119)
+++ trunk/Tools/ChangeLog	2017-07-04 17:51:30 UTC (rev 219120)
@@ -1,5 +1,22 @@
 2017-07-04  Michael Catanzaro  <[email protected]>
 
+        [GTK] Add more GTK bots to dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=174129
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        We have a bunch of GTK bots that I never look at because they're not on the dashboard. Add
+        them.
+
+        This also changes the sort order to put WPE above GTK so that it's not buried under all the
+        less-essential GTK bots.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js:
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js:
+        (WebKitBuildbot):
+
+2017-07-04  Michael Catanzaro  <[email protected]>
+
         [WPE] Add WPE to bot watcher dashboard
         https://bugs.webkit.org/show_bug.cgi?id=174119
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to