Not 100% sure, but with two GitPollers using the same working
directory, I suspect that there was a conflict between the
underlying repos as to which commit was the newest. Give
each of them an explicit working directory in the attempt
to avoid this.
Signed-off-by: Dan Scott <dan@coffeecode.net>
from buildbot.changes import gitpoller
c['change_source'] = (
- gitpoller.GitPoller(
- project='OpenSRF',
- repourl=osrf_git
+ gitpoller.GitPoller(
+ project='OpenSRF',
+ repourl=osrf_git,
+ workdir='/tmp/buildbot_osrf_work'
),
- gitpoller.GitPoller(
- project='Evergreen',
- repourl=eg_git
+ gitpoller.GitPoller(
+ project='Evergreen',
+ repourl=eg_git,
+ workdir='/tmp/buildbot_eg_work'
)
)