The team I work with is standardized on Jenkins assemblies for continuous integration. Code verification launches a standard build, Cobertura analysis, and publishes the Artifactory SNAPSHOT repository. I just finished adding a new target to the main assembly file that will start Sonar, but I donβt want it to be executed every time I register.
Is there a way to schedule nightly builds of a specific build target in Jenkins? Jenkins clearly facilitates the planned builds, but he will run a regular build of the project every time. I would like to be able to designate a Sonar build target for a nightly launch.
I could, of course, create a separate Jenkins project to launch the Sonar target on a schedule, but I try to avoid this if I can. Our Jenkins server already has several hundred builds; doubling what is not very desirable for planning nightly builds. I was looking for a Jenkins plugin that could facilitate this, but I could not find anything. Any suggestions?
continuous-integration hudson jenkins sonarqube
Sam T.
source share