Title: [239582] trunk/Tools
Revision
239582
Author
[email protected]
Date
2019-01-02 16:48:44 -0800 (Wed, 02 Jan 2019)

Log Message

[ews-build] Use git on OpenSource EWS bots
https://bugs.webkit.org/show_bug.cgi?id=193092

Reviewed by Lucas Forschler.

* BuildSlaveSupport/ews-build/steps.py:
(CheckOutSource): Use git instead of svn.
(CheckOutSource.__init__): Use timeout of 2 hours since the initial checkout might take a long time.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-build/steps.py (239581 => 239582)


--- trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-01-03 00:09:37 UTC (rev 239581)
+++ trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-01-03 00:48:44 UTC (rev 239582)
@@ -23,7 +23,7 @@
 from buildbot.process import buildstep, logobserver, properties
 from buildbot.process.results import Results, SUCCESS, FAILURE, WARNINGS, SKIPPED, EXCEPTION, RETRY
 from buildbot.steps import master, shell, transfer
-from buildbot.steps.source import svn
+from buildbot.steps.source import git
 from twisted.internet import defer
 
 import re
@@ -90,14 +90,15 @@
         return '{}show_bug.cgi?id={}'.format(BUG_SERVER_URL, bug_id)
 
 
-class CheckOutSource(svn.SVN):
+class CheckOutSource(git.Git):
     CHECKOUT_DELAY_AND_MAX_RETRIES_PAIR = (0, 2)
 
     def __init__(self, **kwargs):
-        self.repourl = 'https://svn.webkit.org/repository/webkit/trunk'
+        self.repourl = 'https://git.webkit.org/git/WebKit.git'
         super(CheckOutSource, self).__init__(repourl=self.repourl,
                                                 retry=self.CHECKOUT_DELAY_AND_MAX_RETRIES_PAIR,
-                                                preferLastChangedRev=True,
+                                                timeout=2 * 60 * 60,
+                                                progress=True,
                                                 **kwargs)
 
 

Modified: trunk/Tools/ChangeLog (239581 => 239582)


--- trunk/Tools/ChangeLog	2019-01-03 00:09:37 UTC (rev 239581)
+++ trunk/Tools/ChangeLog	2019-01-03 00:48:44 UTC (rev 239582)
@@ -1,3 +1,14 @@
+2019-01-02  Aakash Jain  <[email protected]>
+
+        [ews-build] Use git on OpenSource EWS bots
+        https://bugs.webkit.org/show_bug.cgi?id=193092
+
+        Reviewed by Lucas Forschler.
+
+        * BuildSlaveSupport/ews-build/steps.py:
+        (CheckOutSource): Use git instead of svn.
+        (CheckOutSource.__init__): Use timeout of 2 hours since the initial checkout might take a long time.
+
 2019-01-02  Daniel Bates  <[email protected]>
 
         [lldb-webkit] Remove broken code to print WTF::OptionSet::m_storage
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to