summaryrefslogtreecommitdiff
path: root/zuul/driver/git/gitsource.py
diff options
context:
space:
mode:
authorJames E. Blair <jeblair@redhat.com>2018-01-02 14:20:17 -0800
committerJames E. Blair <jeblair@redhat.com>2018-01-16 09:37:40 -0800
commit0e4c791c7bc1df62535b4f6e199a78167c73b8e3 (patch)
treefd7d8b61eea7c40abaa5df7be7f5868d41739c32 /zuul/driver/git/gitsource.py
parent1c2023c108418e90fbc422de854a5e7796533e29 (diff)
downloadzuul-0e4c791c7bc1df62535b4f6e199a78167c73b8e3.tar.gz
Support cross-source dependencies
Additional tests and docs in later patches. Change-Id: I3b86a1e3dd507fa5e584680fb6c86d35f9ff3e23 Story: 2001334 Task: 5885
Diffstat (limited to 'zuul/driver/git/gitsource.py')
-rw-r--r--zuul/driver/git/gitsource.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/zuul/driver/git/gitsource.py b/zuul/driver/git/gitsource.py
index 78ae04ee7..a7d42be12 100644
--- a/zuul/driver/git/gitsource.py
+++ b/zuul/driver/git/gitsource.py
@@ -38,6 +38,15 @@ class GitSource(BaseSource):
def getChange(self, event, refresh=False):
return self.connection.getChange(event, refresh)
+ def getChangeByURL(self, url):
+ return None
+
+ def getChangesDependingOn(self, change, projects):
+ return []
+
+ def getCachedChanges(self):
+ return []
+
def getProject(self, name):
p = self.connection.getProject(name)
if not p: