Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Jenkins CI in my project, I am able to successfully build the project and I have no issues in deploying it in the container after every successful build. Now I have a condition that the deployment to the container has to happen only if there is a change in the release properties file. If there is no change in the release properties file then the project has to be built but no deployment should happen.

Since I am new to Jenkins I am trying out all the options, I am sure that someone must have been in the similar situation, please share your thoughts or ideas. Incase if I find something I will post it.

Highly Appreciate your help on this.

share|improve this question
Is your release properties file in a repository? What is the format? – CIGuy Aug 15 '12 at 0:03
yes the release properties file is in repository and it is in key value pair format(build.number=99).. – Hakuna Matata Aug 15 '12 at 17:29
1  
You could have two jobs. One would do a build only and be triggered by a commit to the project repo. The second would be triggered by a commit to the release properties file and would check out the latest then build + deploy. – CIGuy Aug 15 '12 at 17:56
That's great idea. Is there any way in Jenkins that I can check for a specific file from the project repo whether it is checked in? Do we have any plugin or something like that to verify? Appreciate your help on this. – Hakuna Matata Aug 15 '12 at 20:45
Yes, use the SVN plugin here: wiki.jenkins-ci.org/display/JENKINS/Subversion+Plugin You can set the plugin to watch any level of the repo from base up to a specific file. The plugin will poll the repository at a specified interval and trigger the job if there are changes. – CIGuy Aug 15 '12 at 21:19
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.