Frage

Here is what i am trying to achieve: We have a SVN repository, but we dont want to promote all the changes we get via svn update! I want to manually select each artifact and then build it via Jenkins and deploy it.

Any plugin which will allow me to do that? I dont have a simple criteria like exclude *.jar or *.xml but it is purely manual human intervention.

Thanks, Zoom

War es hilfreich?

Lösung

What about making a new job with build parameters. One of the parameters could be a svn tag/branch to build/run/use, then have a build step that runs a script. In the script you can do whatever you wish with that svn tag, including a checkout and build.

Or, if you want to use pre-built artifacts from another job, you can specify links to those artifacts in the build parameters or a job name/number and have the script automatically grab them for you.

Many different ways to run a job manually :)

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top