Title: [238530] trunk/Tools
Revision
238530
Author
aakash_j...@apple.com
Date
2018-11-26 16:29:53 -0800 (Mon, 26 Nov 2018)

Log Message

[ews-app] Add a config file
https://bugs.webkit.org/show_bug.cgi?id=191933

Reviewed by Lucas Forschler.

* BuildSlaveSupport/ews-app/ews/config.py: Added.

Modified Paths

Added Paths

Diff

Added: trunk/Tools/BuildSlaveSupport/ews-app/ews/config.py (0 => 238530)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews/config.py	                        (rev 0)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/config.py	2018-11-27 00:29:53 UTC (rev 238530)
@@ -0,0 +1,35 @@
+# Copyright (C) 2018 Apple Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1.  Redistributions of source code must retain the above copyright
+#     notice, this list of conditions and the following disclaimer.
+# 2.  Redistributions in binary form must reproduce the above copyright
+#     notice, this list of conditions and the following disclaimer in the
+#     documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
+# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+import os
+
+BUG_SERVER_HOST = 'bugs.webkit.org'
+BUILDBOT_SERVER_HOST = 'ews-build.webkit-uat.org'
+BUILDBOT_SERVER_PORT = '5555'
+BUILDBOT_PB_USERNAME = os.getenv('BUILDBOT_PB_USERNAME', 'sampleuser')
+BUILDBOT_PB_PASSWORD = os.getenv('BUILDBOT_PB_PASSWORD', 'samplepass')
+
+SUCCESS = 0
+ERR_UNEXPECTED = -1
+ERR_EXISTING_PATCH = -2
+ERR_NON_EXISTING_PATCH = -3
+ERR_INVALID_PATCH_ID = -4

Modified: trunk/Tools/ChangeLog (238529 => 238530)


--- trunk/Tools/ChangeLog	2018-11-27 00:21:37 UTC (rev 238529)
+++ trunk/Tools/ChangeLog	2018-11-27 00:29:53 UTC (rev 238530)
@@ -1,5 +1,14 @@
 2018-11-26  Aakash Jain  <aakash_j...@apple.com>
 
+        [ews-app] Add a config file
+        https://bugs.webkit.org/show_bug.cgi?id=191933
+
+        Reviewed by Lucas Forschler.
+
+        * BuildSlaveSupport/ews-app/ews/config.py: Added.
+
+2018-11-26  Aakash Jain  <aakash_j...@apple.com>
+
         [ews-app] Add methods to save patch to database
         https://bugs.webkit.org/show_bug.cgi?id=191928
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to