Currently my team is using Jenkins to do automated builds that are triggered by SVN changes.
Recently, we decided we wanted to use Sonar. We don't want to have the sonar/hudson integration occur for every single snapshot build. We just want it once a week or so.
Our team uses 'clean deploy -U' instead of 'clean deploy site-deploy -U' so simply using the periodical build to trigger sonar won't be enough because it won't have the site information from the build (such as the clover report).
My question is, in one job, is it possible to associate a different goal to different build times? I'm probably not being terribly clear. Can I associate a 'clean deploy -U' to the build triggered by the SVN change but associate a 'clean deploy site-deploy -U' to a build triggered by the periodical build?
Are my only choices to 1) convince everyone to have the site-deploy with every snapshot build (thus taking more time) or 2) create a new job for the weekly build?
