Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm attempting to get jenkins to build a project, but it seems to want to do a fresh clone everytime for some reason. I get this error:

none: ssh://hg@bitbucket.org/marc/repo/
which looks different than ssh://hg@bitbucket.org/marc/repo/
so falling back to fresh clone rather than incremental update

Is there something that would cause this? The two mentioned URLs are the same.

share|improve this question

2 Answers

up vote 2 down vote accepted

Turns out that with the debug option set to true (in the global jenkins settings for Mercurial) it will not update (but will clone), so this is a bug in the mercurial plugin for jenkins, but with a workaround that you can disable debug.

share|improve this answer
This bug was fixed: issues.jenkins-ci.org/browse/JENKINS-13329 – Gili Sep 3 '12 at 18:53

Your build probably changes some files/directories in the original structure of your local copy. Jenkins detects it and restarts fresh to be clean.

regards

didier

share|improve this answer
THAT's what's happening! thanks! – djhaskin987 Feb 28 '12 at 19:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.