WebKit Bugzilla
Attachment 361545 Details for
Bug 194456
: [ews-build] Add short name to config.json
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
ews-build-shortname.patch (text/plain), 6.13 KB, created by
Aakash Jain
on 2019-02-08 15:46:19 PST
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-02-08 15:46:19 PST
Size:
6.13 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 241214) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,14 @@ >+2019-02-08 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-build] Add short name to config.json >+ https://bugs.webkit.org/show_bug.cgi?id=194456 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-build/config.json: Added short name. >+ * BuildSlaveSupport/ews-build/loadConfig.py: >+ (loadBuilderConfig): Set the short name as the builder description. >+ > 2019-02-08 Jonathan Bedard <jbedard@apple.com> > > webkitpy: CrashLogs.find_all_logs may return a string or a dictionary >Index: Tools/BuildSlaveSupport/ews-build/config.json >=================================================================== >--- Tools/BuildSlaveSupport/ews-build/config.json (revision 241214) >+++ Tools/BuildSlaveSupport/ews-build/config.json (working copy) >@@ -205,18 +205,21 @@ > "builders": [ > { > "name": "Style-EWS", >+ "shortname": "style", > "factory": "StyleFactory", > "platform": "*", > "workernames": ["ews151", "webkit-misc"] > }, > { > "name": "GTK-Webkit2-EWS", >+ "shortname": "gtk", > "factory": "GTKFactory", > "platform": "gtk", > "workernames": ["tanty-gtk-wk2-ews", "ltilve-gtk-wk2-ews"] > }, > { > "name": "iOS-11-Build-EWS", >+ "shortname": "ios", > "factory": "iOSBuildFactory", > "platform": "ios-11", > "configuration": "release", >@@ -225,6 +228,7 @@ > }, > { > "name": "iOS-11-Simulator-Build-EWS", >+ "shortname": "ios-sim", > "factory": "iOSBuildFactory", > "platform": "ios-simulator-11", > "configuration": "release", >@@ -234,6 +238,7 @@ > }, > { > "name": "iOS-11-Simulator-WK2-Tests-EWS", >+ "shortname": "ios-wk2", > "factory": "iOSTestsFactory", > "platform": "ios-simulator-11", > "configuration": "release", >@@ -242,6 +247,7 @@ > }, > { > "name": "macOS-High-Sierra-Release-Build-EWS", >+ "shortname": "mac", > "factory": "macOSBuildFactory", > "platform": "mac-highsierra", > "configuration": "release", >@@ -251,6 +257,7 @@ > }, > { > "name": "macOS-High-Sierra-Release-WK1-Tests-EWS", >+ "shortname": "mac-wk1", > "factory": "macOSWK1Factory", > "platform": "mac-highsierra", > "configuration": "release", >@@ -259,6 +266,7 @@ > }, > { > "name": "macOS-High-Sierra-Release-WK2-Tests-EWS", >+ "shortname": "mac-wk2", > "factory": "macOSWK2Factory", > "platform": "mac-highsierra", > "configuration": "release", >@@ -267,6 +275,7 @@ > }, > { > "name": "macOS-High-Sierra-Debug-Build-EWS", >+ "shortname": "mac-debug", > "factory": "macOSBuildFactory", > "platform": "mac-highsierra", > "configuration": "debug", >@@ -276,6 +285,7 @@ > }, > { > "name": "macOS-High-Sierra-Debug-WK1-Tests-EWS", >+ "shortname": "mac-debug-wk1", > "factory": "macOSWK1Factory", > "platform": "mac-highsierra", > "configuration": "debug", >@@ -284,6 +294,7 @@ > }, > { > "name": "macOS-High-Sierra-Release-32bit-Build-EWS", >+ "shortname": "mac-32bit", > "factory": "macOSBuildFactory", > "platform": "mac-highsierra", > "configuration": "release", >@@ -293,6 +304,7 @@ > }, > { > "name": "macOS-High-Sierra-Release-32bit-WK2-Tests-EWS", >+ "shortname": "mac-32bit-wk2", > "factory": "macOSWK2Factory", > "platform": "mac-highsierra", > "configuration": "release", >@@ -301,24 +313,28 @@ > }, > { > "name": "Windows-EWS", >+ "shortname": "win", > "factory": "WindowsFactory", > "platform": "win", > "workernames": ["ews200", "ews201", "ews202", "ews203", "ews204", "ews205", "ews206", "ews207", "ews208"] > }, > { > "name": "WinCairo-EWS", >+ "shortname": "wincairo", > "factory": "WinCairoFactory", > "platform": "wincairo", > "workernames": ["wincairo-ews-001", "wincairo-ews-002", "wincairo-ews-003", "wincairo-ews-004"] > }, > { > "name": "WPE-EWS", >+ "shortname": "wpe", > "factory": "WPEFactory", > "platform": "wpe", > "workernames": ["igalia-wpe-ews", "aperez-wpe-gcc5-ews", "aperez-wpe-gcc6-ews"] > }, > { > "name": "JSC-Tests-EWS", >+ "shortname": "jsc", > "factory": "JSCTestsFactory", > "platform": "jsc-only", > "configuration": "release", >@@ -326,30 +342,35 @@ > }, > { > "name": "Bindings-Tests-EWS", >+ "shortname": "bindings", > "factory": "BindingsFactory", > "platform": "*", > "workernames": ["ews151", "webkit-misc"] > }, > { > "name": "WebKitPy-Tests-EWS", >+ "shortname": "webkitpy", > "factory": "WebKitPyFactory", > "platform": "*", > "workernames": ["ews151", "webkit-misc"] > }, > { > "name": "WebKitPerl-Tests-EWS", >+ "shortname": "webkitperl", > "factory": "WebKitPerlFactory", > "platform": "*", > "workernames": ["ews151", "webkit-misc"] > }, > { > "name": "API-Tests-iOS-Simulator-EWS", >+ "shortname": "api-ios", > "factory": "APITestsFactory", > "platform": "*", > "workernames": ["ews152", "ews153", "webkit-misc"] > }, > { > "name": "API-Tests-macOS-EWS", >+ "shortname": "api-mac", > "factory": "APITestsFactory", > "platform": "*", > "workernames": ["ews151", "ews152", "ews153", "webkit-misc"] >Index: Tools/BuildSlaveSupport/ews-build/loadConfig.py >=================================================================== >--- Tools/BuildSlaveSupport/ews-build/loadConfig.py (revision 241214) >+++ Tools/BuildSlaveSupport/ews-build/loadConfig.py (working copy) >@@ -51,6 +51,7 @@ def loadBuilderConfig(c, use_localhost_w > for builder in config['builders']: > builder['tags'] = getTagsForBuilder(builder) > factory = globals()[builder['factory']] >+ builder['description'] = builder.pop("shortname") > factorykwargs = {} > for key in ["platform", "configuration", "architectures", "triggers", "additionalArguments"]: > value = builder.pop(key, None)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 194456
: 361545