<div dir="ltr"><div><div><div>Greetings all,<br><br></div>I am using Buildbot version 0.9.1 with Mercurial repositories. Now, I have 2 repositories I want to work with in a builder and a scheduler:<br><ul><li>Mercurial repo A - main repo</li><li>Mercurial repo B - build scripts</li></ul>And I am trying to use a ForceScheduler with the following setup to create builds:<br><br>force_sch = schedulers.ForceScheduler(<br>    name="force-debug-build",<br>    buttonName="Force Build",<br>    label="Force form",<br>    builderNames=["Build-debug"],<br>    codebases=[                                              <br>        util.CodebaseParameter(<br>             "",                                              <br>             name="Repo A",                                        <br>             revision=util.StringParameter(name="revision", label="changeset",<br>                                          default="abc", size=15),<br>             branch=util.FixedParameter(name="branch", default="default"),<br>             repository=util.FixedParameter(name="repository",<br>                         default="<repo A URL>),<br>             project=util.FixedParameter(name="project", default="debug-repo"),<br>         ),<br>     ],<br>     reason=util.StringParameter(name="reason",<br>                                 label="reason:",<br>                                 size=80),<br>     username=util.UserNameParameter(label="Your name:",<br>                                     size=80<br>                                    )<br>     )<br><br>to run a builder that does the following for the checkout steps:<br><ol><li>Checkout from Mercurial repo A<br></li><li>Checkout from Mercurial repo B</li></ol>The problem is that both repos A and B get the ForceScheduler revision passed to them for the checkout steps. And I only want repo A to get the ForceScheduler revision. Is there a way to only have the checkout of repo A get the revision?<br><br></div>Regards,<br><br></div>Alvaro<br></div>