Is there a way to configure Hudson to only execute Build or Post Build actions if there are changes in SVN/CVS
Thank you
|
Is there a way to configure Hudson to only execute Build or Post Build actions if there are changes in SVN/CVS Thank you
| ||||
|
feedback
|
|
You can have Hudson poll the SCM for changes and only do things if it finds changes.
You can also add something to your SCM post-commit hooks that will fire off a Hudson build.
| |||||||||
feedback
|
|
It is not as simple as looking at the revision number (as stated elsewhere) unless your build is for the entire subversion repository. Typically you have projects sharing a single subversion repository and you are building some sub-tree. The global revision number doesn't help. 'svn info [url_to_subtree]' will show the Last Changed Date. You can parse this and figure out if it is later than your last build date and trigger a new build. | ||||
|
feedback
|