Title: [243501] trunk/Tools
- Revision
- 243501
- Author
- [email protected]
- Date
- 2019-03-26 10:12:23 -0700 (Tue, 26 Mar 2019)
Log Message
[ews-build] is_test_mode_enabled should default to True
https://bugs.webkit.org/show_bug.cgi?id=196248
Reviewed by Lucas Forschler.
* BuildSlaveSupport/ews-build/master.cfg: Reverse the environment variable used to decide is_test_mode_enabled.
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/ews-build/master.cfg (243500 => 243501)
--- trunk/Tools/BuildSlaveSupport/ews-build/master.cfg 2019-03-26 17:08:17 UTC (rev 243500)
+++ trunk/Tools/BuildSlaveSupport/ews-build/master.cfg 2019-03-26 17:12:23 UTC (rev 243501)
@@ -3,7 +3,7 @@
import loadConfig
from events import Events
-is_test_mode_enabled = os.getenv('BUILDBOT_TESTING') is not None
+is_test_mode_enabled = os.getenv('BUILDBOT_PRODUCTION') is None
c = BuildmasterConfig = {}
Modified: trunk/Tools/ChangeLog (243500 => 243501)
--- trunk/Tools/ChangeLog 2019-03-26 17:08:17 UTC (rev 243500)
+++ trunk/Tools/ChangeLog 2019-03-26 17:12:23 UTC (rev 243501)
@@ -1,5 +1,14 @@
2019-03-26 Aakash Jain <[email protected]>
+ [ews-build] is_test_mode_enabled should default to True
+ https://bugs.webkit.org/show_bug.cgi?id=196248
+
+ Reviewed by Lucas Forschler.
+
+ * BuildSlaveSupport/ews-build/master.cfg: Reverse the environment variable used to decide is_test_mode_enabled.
+
+2019-03-26 Aakash Jain <[email protected]>
+
[ews-app] Add webkitperl to ENABLED_QUEUES
https://bugs.webkit.org/show_bug.cgi?id=196253
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes