Jenkins plugin for checking out a single modified file from SVN -
i have job in developer changes file , checks in in svn. developer checks in file, jenkins has trigger build , copy changed file (not entire directory) svn target server.
for example, developer checked in file in trunk in svn. trunk contains huge number of files, jenkins needs copy changed file svn trunk folder target server.
how can achieved? there plugin or functionality helps support feature?
you cannot check out single file subversion. smallest unit can check out directory.
if have working copy, svn update
pull differences.
you can use svn export
or svn cat
extract single file repository, not have connection repository when you're finished (unlike working copy).