<div dir="ltr"><div>Hello everyone:</div><div><br></div><div>I see from the FAQ that BB doesn’t directly support a single project with multiple repositories, but described solutions existing in this group archive. For my case project A is a Subversion project, and project B is a Git project. I think that ideally I’d like to do this. This is Python pseudo-code, but you get the idea hopefully:</div><div><br></div><div>def GetSource(commit_id):</div><div>  if len(commit_id) < 40:</div><div>    # The Subversion project was revised.</div><div>    svn.Checkout(commit_id)</div><div>    git.Checkout(svn.CommitDate(commit_id))</div><div>  else:</div><div>    # The Git project was revised.</div><div>    git.Checkout(commit_id)</div><div>    svn.Checkout(git.CommitDate(commit_id))</div><div><br></div><div>I’ve searched through the archives, and have found a few of these questions, but none that I think describe my use-case. Any suggestions as to how I can get this to work? Here’s my current master.cfg:</div><div><br></div><div><a href="https://github.com/starryexpanse/continuous-build/blob/master/buildbot/master/master.cfg">https://github.com/starryexpanse/continuous-build/blob/master/buildbot/master/master.cfg</a></div></div>