Title: [242066] trunk/Tools
Revision
242066
Author
[email protected]
Date
2019-02-25 18:55:03 -0800 (Mon, 25 Feb 2019)

Log Message

[ews-app] Add model for handling multiple Buildbot instances
https://bugs.webkit.org/show_bug.cgi?id=194863

Reviewed by Stephanie Lewis.

* BuildSlaveSupport/ews-app/ews/models/buildbotinstance.py: Added.

Modified Paths

Added Paths

Diff

Added: trunk/Tools/BuildSlaveSupport/ews-app/ews/models/buildbotinstance.py (0 => 242066)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews/models/buildbotinstance.py	                        (rev 0)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/models/buildbotinstance.py	2019-02-26 02:55:03 UTC (rev 242066)
@@ -0,0 +1,36 @@
+# Copyright (C) 2019 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.
+
+from __future__ import unicode_literals
+
+from django.db import models
+
+
+class BuildbotInstance(models.Model):
+    instance_id = models.AutoField(primary_key=True)
+    hostname = models.TextField()
+    active = models.BooleanField(default=True)
+    created = models.DateTimeField(auto_now_add=True)
+    modified = models.DateTimeField(auto_now=True)
+
+    def __str__(self):
+        return '{}_{}'.format(self.instance_id, self.hostname)

Modified: trunk/Tools/ChangeLog (242065 => 242066)


--- trunk/Tools/ChangeLog	2019-02-26 02:52:33 UTC (rev 242065)
+++ trunk/Tools/ChangeLog	2019-02-26 02:55:03 UTC (rev 242066)
@@ -1,5 +1,14 @@
 2019-02-25  Aakash Jain  <[email protected]>
 
+        [ews-app] Add model for handling multiple Buildbot instances
+        https://bugs.webkit.org/show_bug.cgi?id=194863
+
+        Reviewed by Stephanie Lewis.
+
+        * BuildSlaveSupport/ews-app/ews/models/buildbotinstance.py: Added.
+
+2019-02-25  Aakash Jain  <[email protected]>
+
         [ews-app] Remove BuilderMapping table
         https://bugs.webkit.org/show_bug.cgi?id=194961
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to