[users at bb.net] yet another multi-repo per project question.
Chris Mumford
cmumford at cmumford.com
Sun Dec 17 20:59:43 UTC 2017
Hello everyone:
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:
def GetSource(commit_id):
if len(commit_id) < 40:
# The Subversion project was revised.
svn.Checkout(commit_id)
git.Checkout(svn.CommitDate(commit_id))
else:
# The Git project was revised.
git.Checkout(commit_id)
svn.Checkout(git.CommitDate(commit_id))
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:
https://github.com/starryexpanse/continuous-build/blob/master/buildbot/master/master.cfg
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.buildbot.net/pipermail/users/attachments/20171217/b51a7c28/attachment.html>
More information about the users
mailing list