Re: Maven site hosted on Jenkins

2013-02-23 Thread Stephen Connolly
On Saturday, 23 February 2013, David V wrote: > Is there a way to have Jenkins host a Maven site, much like the way that > the Javadoc plugin works? With the Javadoc plugin, I can view the latest > Javadoc of a job directly from its main page. I am interested in a similar > feature for Maven sites

Re: how to trigger one job if two other succeeds?

2013-02-23 Thread Deeps
Use Build Result Trigger Plugin On Friday, 22 February 2013 12:20:44 UTC+5:30, Kenneth Nielsen wrote: > > Hi all, > > I have a myriads of small jobs in Jenkins, to get fast feedback for my > projects. > And I have two big on

Re: Dependency without upstream calling downstream?

2013-02-23 Thread Deepak
You may try one of the following Build PipeLine In this you could make 2 pipelines and trigger whichever you want to be triggered You could also look at Conditional BuildStep

Re: Send e-mail to committers on failure (Git)

2013-02-23 Thread Andreas Sommer
It seems to work now with the latest version of the Git Plugin :) On Monday, February 18, 2013 8:11:02 AM UTC+1, Andreas Sommer wrote: > > But still the recipients list stays empty and is not pulled from the git > commit author. > > > > Am 18.02.2013 um 05:26 schrieb Slide >: > > Yeah, that's the

Re: Maven site hosted on Jenkins

2013-02-23 Thread Jesse Farinacci
Greetings, On Sat, Feb 23, 2013 at 3:07 AM, Stephen Connolly wrote: > On Saturday, 23 February 2013, David V wrote: >> Is there a way to have Jenkins host a Maven site, much like the way that >> the Javadoc plugin works? With the Javadoc plugin, I can view the latest >> Javadoc of a job directly

Re: how to trigger one job if two other succeeds?

2013-02-23 Thread Foxgang
Someone said to use the Join plugin. That might be enough, but if you're looking for something more flexible, I recommend the Build Flow Plugin. On Friday, February 22, 2013 12:50:44 AM UTC-6, Kenneth Nielsen wrote: > > Hi all, > > I have a myriads of small jobs in Jenkins, to get fast feedback

Guidance: setting up to build linux distribution

2013-02-23 Thread mwpowellhtx
Hello, We've got a linux distribution we are customizing to target our embedded device. I'd like to automate this process through a CI server running on Ubuntu 10.04 so that we can capture distro updates, versions, etc. If it's germane, also get some clue how to capture any bootstrap processes as

Re: Maven site hosted on Jenkins

2013-02-23 Thread David V
That is what I would like to do. It almost seems to work. The logs reports: [JENKINS] Archiving site from /Users/Shared/Jenkins/Home/workspace/Java Test/target/site to /var/lib/jenkins/jobs/Java Test/site Which makes me think that the Jenkins job is aware of the site. But then I receive a numb

Re: Maven site hosted on Jenkins

2013-02-23 Thread Jesse Farinacci
Greetings, On Sat, Feb 23, 2013 at 2:32 PM, David V wrote: > message : Failed to execute goal > org.apache.maven.plugins:maven-site-plugin:3.0:site (default-site) on > project test: SiteToolException: The site descriptor cannot be resolved from > the repository: ArtifactResolutionException: Unabl

Re: Dependency without upstream calling downstream?

2013-02-23 Thread Xiao-Long Chen
Hi Deepak, Thanks for the reply! I ended up forking the Build Blocker Plugin [1]. Now, there's no more upstream/downstream relationship between JobA and JobB, but B will always wait for A if they're both in the queue, which is exactly what I wanted :) The problem with the original plugin is