Title: [273409] trunk/Tools
Revision
273409
Author
aakash_j...@apple.com
Date
2021-02-24 11:03:28 -0800 (Wed, 24 Feb 2021)

Log Message

Disable Buildbot old-style step deprecation warning
https://bugs.webkit.org/show_bug.cgi?id=222363

Reviewed by Jonathan Bedard.

* CISupport/build-webkit-org/master_buildbot2.cfg:
* CISupport/ews-build/master.cfg:
* CISupport/runUnittests.py:

Modified Paths

Diff

Modified: trunk/Tools/CISupport/build-webkit-org/master_buildbot2.cfg (273408 => 273409)


--- trunk/Tools/CISupport/build-webkit-org/master_buildbot2.cfg	2021-02-24 18:44:07 UTC (rev 273408)
+++ trunk/Tools/CISupport/build-webkit-org/master_buildbot2.cfg	2021-02-24 19:03:28 UTC (rev 273409)
@@ -7,7 +7,11 @@
 from datetime import timedelta
 from loadConfig import *
 
+# This is work-around for https://bugs.webkit.org/show_bug.cgi?id=222361
+from buildbot.process.buildstep import BuildStep
+BuildStep.warn_deprecated_if_oldstyle_subclass = lambda self, name: None
 
+
 is_test_mode_enabled = os.getenv('BUILDBOT_PRODUCTION') is None
 
 c = BuildmasterConfig = {}

Modified: trunk/Tools/CISupport/ews-build/master.cfg (273408 => 273409)


--- trunk/Tools/CISupport/ews-build/master.cfg	2021-02-24 18:44:07 UTC (rev 273408)
+++ trunk/Tools/CISupport/ews-build/master.cfg	2021-02-24 19:03:28 UTC (rev 273409)
@@ -12,6 +12,10 @@
 from twisted.spread import banana
 banana.SIZE_LIMIT = 100 * 1024 * 1024
 
+# This is work-around for https://bugs.webkit.org/show_bug.cgi?id=222361
+from buildbot.process.buildstep import BuildStep
+BuildStep.warn_deprecated_if_oldstyle_subclass = lambda self, name: None
+
 is_test_mode_enabled = os.getenv('BUILDBOT_PRODUCTION') is None
 
 c = BuildmasterConfig = {}

Modified: trunk/Tools/CISupport/runUnittests.py (273408 => 273409)


--- trunk/Tools/CISupport/runUnittests.py	2021-02-24 18:44:07 UTC (rev 273408)
+++ trunk/Tools/CISupport/runUnittests.py	2021-02-24 19:03:28 UTC (rev 273409)
@@ -9,6 +9,10 @@
     python -m unittest discover --start-directory {test_discovery_path} --pattern {UNIT_TEST_PATTERN}
 """
 
+# This is work-around for https://bugs.webkit.org/show_bug.cgi?id=222361
+from buildbot.process.buildstep import BuildStep
+BuildStep.warn_deprecated_if_oldstyle_subclass = lambda self, name: None
+
 UNIT_TEST_PATTERN = '*_unittest.py'
 
 

Modified: trunk/Tools/ChangeLog (273408 => 273409)


--- trunk/Tools/ChangeLog	2021-02-24 18:44:07 UTC (rev 273408)
+++ trunk/Tools/ChangeLog	2021-02-24 19:03:28 UTC (rev 273409)
@@ -1,5 +1,16 @@
 2021-02-24  Aakash Jain  <aakash_j...@apple.com>
 
+        Disable Buildbot old-style step deprecation warning
+        https://bugs.webkit.org/show_bug.cgi?id=222363
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/build-webkit-org/master_buildbot2.cfg:
+        * CISupport/ews-build/master.cfg:
+        * CISupport/runUnittests.py:
+
+2021-02-24  Aakash Jain  <aakash_j...@apple.com>
+
         [ews] Add python 3 support - part 3
         https://bugs.webkit.org/show_bug.cgi?id=222355
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to