In Jenkins (Hudson) how do i change the checkout location of a project.

I want the project to be checked out to the doc-root of apache2 which is at /var/svn/project by default Jenkins checks it out to the /jobs dir on /lib/jenkins/

I thought of running a shell command to copy the checked out code from jobs folder to the doc-root but it'll copy the entire folder even if its a single file that has been changed.

Should i look in to rsync or can Jenkins do this (even with a plugin)

link|improve this question

39% accept rate
So it sounds like you want your Jenkins job to deploy to your Apache server? – Tony Aug 31 '11 at 3:38
yep. using the ftp plugin i managed to get it to deploy on our remote server but i cant get it to update the code on the local server. apache and jenkins and svn are all on the same server – heshan Aug 31 '11 at 3:43
Sounds like you should move Jenkins off so you can just use the FTP plugin also. However, you should be able to use the job scripts to get the same effect I would imagine. Our jobs use scp to move files from the Jenkins workspace to where we need them. – Tony Aug 31 '11 at 3:55
hmmm i tried rsync but it gives me and error rsync: link_stat "/var/lib/jenkins/jobs/SVN Update - Local/workspace. im guessing this is because of the spaces and the - on my path. – heshan Aug 31 '11 at 4:19
I ended up dong this rsync -auv ./ /var/svn/project/base/ which seem to work – heshan Aug 31 '11 at 4:57
show 1 more comment
feedback

1 Answer

There is an option in Jenkins to change the location of your workspace...

On the job configuration page, under the section "Advanced Project Options", click the "Advanced" button.

Check the box near "Use custom workspace", and fill in the location where you want your check-out to go.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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