Re: Docs for JENKINS_JAVA_OPTIONS

2012-03-05 Thread Les Mikesell
On Mon, Mar 5, 2012 at 11:44 PM, Frank Merrow wrote: >>I was referring to specifically to the way jenkins works, not about whether > or not it is fun to write. >>I don't see a lot of other languages that offer to self-install and execute > across all the platforms that >>run Jenkins as master or s

RE: Docs for JENKINS_JAVA_OPTIONS

2012-03-05 Thread Frank Merrow
>I was referring to specifically to the way jenkins works, not about whether or not it is fun to write. >I don't see a lot of other languages that offer to self-install and execute across all the platforms that >run Jenkins as master or slaves. And I was pointing out that the IDE support for Java

Re: Redundant syncs by Perforce plugin when using matrix jobs

2012-03-05 Thread Rob Petti
Sorry, apparently Google is REALLY slow at indexing groups, so I haven't yet received a notification for this post. This is a problem with core, like many others have described. The main build will always sync first, and there's really no way (that I know of) to get around it. I suggest you ch

Re: Parameterized build not working - plz help

2012-03-05 Thread Andrew Melo
Hi there, How are you submitting the job? -andrew On Mon, Mar 5, 2012 at 8:15 PM, Jatin D Patel wrote: > Hi all, > > I have set up a string value > Name : VERSION > Default Value : 17 > > Ref: http://wiki.hudson-ci.org/display/HUDSON/Parameterized+Build > > When i try to access, the version va

Parameterized build not working - plz help

2012-03-05 Thread Jatin D Patel
Hi all, I have set up a string value Name : VERSION Default Value : 17 Ref: http://wiki.hudson-ci.org/display/HUDSON/Parameterized+Build When i try to access, the version value, i get a blank response echo $JAVA_HOME returns Java Home location *echo $VERSION* *returns a blank line* * * *echo "

Re: Upgraded to Jenkins, one Maven project fails to build with java.lang.NoSuchMethodError: org.apache.maven.project.MavenProject.getProjectBuildingRequest()

2012-03-05 Thread TJ Rothwell
Try updating the version of maven for the CI build. I was using the pre-configured one labeled "Maven3.0" and changed to "Maven3.0.4" which resolved the issue for me. -- TJ On Mon, Mar 5, 2012 at 5:43 PM, Collin Peters wrote: > No - I haven't been able to resolve it. I even got the error tryin

Re: Upgraded to Jenkins, one Maven project fails to build with java.lang.NoSuchMethodError: org.apache.maven.project.MavenProject.getProjectBuildingRequest()

2012-03-05 Thread Collin Peters
No - I haven't been able to resolve it. I even got the error trying to build a completely unrelated Maven project. I have absolutely no idea what causes this On Mon, Mar 5, 2012 at 2:50 PM, TJ Rothwell wrote: > Collin, > > Were you able to resolve this? > > -- TJ > > > On Friday, January 13, 2

Re: Upgraded to Jenkins, one Maven project fails to build with java.lang.NoSuchMethodError: org.apache.maven.project.MavenProject.getProjectBuildingRequest()

2012-03-05 Thread TJ Rothwell
Collin, Were you able to resolve this? -- TJ On Friday, January 13, 2012 6:27:29 PM UTC-6, Nick wrote: > > Has anyone found a solution to this? I'm running into a very similar > problem. Thank you! :)

Re: "Your branch is behind 'origin/master' by 1 commit, and can be fast-forwarded"

2012-03-05 Thread Sami Tikka
So, I guess you could just do in your build step: git checkout master git merge origin/master # do your thing git commit git push origin master And then start thinking how to change your build process so that you no longer need to make commits during the build... :) -- Sami 2012/3/5 Matthias :

RE: Passing information from one build to another

2012-03-05 Thread John Arrizza
Have your post build step write the build number etc to a file. The other builds read the file. Just use echo abc >> somefile.txt Original Message From: Kayla Lewis Sent: Mon, Mar 5, 2012 13:08 To: jenkinsci-users@googlegroups.com CC: Subject: Passing information from o

Passing information from one build to another

2012-03-05 Thread Kayla Lewis
I want to have a post build action that's triggered only when the build succeeds. The build number will need to be passed in to the post build script. Does anyone have suggestions on how to do this or what plugin to use?

Jenkins Selenium Plugin - License question

2012-03-05 Thread Greg Hinson
I have a question about the Selenium Plugin for Jenkins. https://wiki.jenkins-ci.org/display/JENKINS/Selenium+Plugin When I looked at the source for the plugin on github ( https://github.com/jenkinsci/selenium-plugin) I didn’t see any license file associated with the plugin’s code. Is the Se

Re: Slow job configuration launch

2012-03-05 Thread tah
Using Firefox, so that's not the problem. Thanks for the suggestion though! K96 wrote: > Hi, > > - Don't use IE8 browser > - Disable unused plugins > > Regards, > @kuhcrow > > > On Mar 2, 2:22 pm, Didier Durand wrote: > > Hi, > > > > Do you keep a long history of builds for your jobs ? It may hel

Re: Slow job configuration launch

2012-03-05 Thread tah
No, the slowness happens with a brand new job with no history. In fact, it happened right at initial install. Didier Durand wrote: > Hi, > > Do you keep a long history of builds for your jobs ? It may help if > you keep it smaller. > > regards > > didier > > On Mar 2, 6:12 am, tah wrote: > > Hell

RE: Specifying files in warnings plugin

2012-03-05 Thread Matthew.Webber
Hi Ulli, Thank you for your hint. “.*/materialize_workspace_git/scisoft/.*\.java” works for me. Originally, I was missing the “.*/” at the beginning of the regex. Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On

Re: groovy plugin?

2012-03-05 Thread Les Mikesell
On Mon, Mar 5, 2012 at 10:19 AM, Vojtech Juranek wrote: > >> I was just missing something obvious.  Along with checking the >> 'Install automatically' box in the global config (which might have >> been set by default) you have to give it a name and then you have to >> pick that name in the job con

Re: Handing off builds between Jenkins masters

2012-03-05 Thread Jacob Robertson
We are wanting a similar thing. We want a successful build to kick of a particular parameterized build on another master. Right now, we've prototyped using wget (using "buildWithParameters") from within the flexible publish plugin so that it can be a post-build action. It seems to work fine, but

Re: groovy plugin?

2012-03-05 Thread Vojtech Juranek
> I was just missing something obvious. Along with checking the > 'Install automatically' box in the global config (which might have > been set by default) you have to give it a name and then you have to > pick that name in the job config. Before getting this right, the job > config only offere

Re: Specifying files in warnings plugin

2012-03-05 Thread Ullrich Hafner
On 03/05/2012 04:08 PM, matthew.web...@diamond.ac.uk wrote: > We've just started using the warnings plugin, scanning the console log for > Buckminster compiler warnings. > > I want to only collect warnings for selected source files, so I clicked > "Advanced" which offers options "Warnings to incl

Re: groovy plugin?

2012-03-05 Thread Les Mikesell
On Mon, Mar 5, 2012 at 2:56 AM, Vojtech Juranek wrote: >> On Thu, Feb 23, 2012 at 5:43 PM, Vojtech Juranek > wrote: >> >> Does the groovy plugin need anything special installed on the slaves? >> > >> > there are two options, groovy script and system groovy script. First one >> > requires groovy i

Removing deleted modules from workspaces

2012-03-05 Thread David Pärsson
Hi, We're using Jenkins with multiple jobs running on multiple machines. Most jobs uses a SVN as SCM, with multiple modules in the same workspace. When a module is removed from a job configuration, its files remain in the workspaces on our slaves until the workspaces are wiped. This causes some

Re: Redundant syncs by Perforce plugin when using matrix jobs

2012-03-05 Thread Andrew Melo
On Mon, Mar 5, 2012 at 9:26 AM, Thomas Fields wrote: > I'm not sure about the SVN plugin but it's a performance killer for me > so I'm hoping there is a fix. I've created > https://issues.jenkins-ci.org/browse/JENKINS-12983 to see if I can get an > official answer from the author of the Perforce p

Re: Redundant syncs by Perforce plugin when using matrix jobs

2012-03-05 Thread Thomas Fields
I'm not sure about the SVN plugin but it's a performance killer for me so I'm hoping there is a fix. I've created https://issues.jenkins-ci.org/browse/JENKINS-12983 to see if I can get an official answer from the author of the Perforce plugin. On Saturday, 3 March 2012 15:58:16 UTC, Simon St

Specifying files in warnings plugin

2012-03-05 Thread Matthew.Webber
We've just started using the warnings plugin, scanning the console log for Buckminster compiler warnings. I want to only collect warnings for selected source files, so I clicked "Advanced" which offers options "Warnings to include" and "Warnings to ignore". I tried to specify a file path here (

Sonar tests fail bevause xvnc plugin was terminated before execution

2012-03-05 Thread MSF
Hi, we have some issues with one of our jobs on our Jenkins (1.424.3 = current LTS Version). We are using xvnc (1.10) and Sonar (1.8) plugins. The job fails because the generated xvnc session is terminated before Sonar is started. We tried different versions of the plugins, but the result is

"Your branch is behind 'origin/master' by 1 commit, and can be fast-forwarded"

2012-03-05 Thread Matthias
Hi, I'm running into a problem with Git and Jenkins here and have no idea why that is. The thing is, we don't want to work in detached HEAD mode, since part of our build is keeping track of a ProGuard mapping file that is updated only ever during the build itself. This means we have to build on

junit stylesheet transformation before jenkins collects junit result

2012-03-05 Thread andy w
Hi, i was wondering if it is possible to perform a custom stylesheet transformation against the junit report files before jenkins collects the junit result? Or are there other ways to modify the junit report xml before the report is collected by jenkins. we are using maven and the surefire plugin

Strange behavior for Cobertura-plugin

2012-03-05 Thread Asmann, Roland
Hi all, I recently added 2 new projects to our Jenkins and the cobertura-plugin is behaving oddly on these projects. On both projects, I see that there is actually code-coverage being registered, but as soon as I go into the detail-page, I get: - one project that says that the source-code is not

Re: groovy plugin?

2012-03-05 Thread Vojtech Juranek
> On Thu, Feb 23, 2012 at 5:43 PM, Vojtech Juranek wrote: > >> Does the groovy plugin need anything special installed on the slaves? > > > > there are two options, groovy script and system groovy script. First one > > requires groovy installation on slaves (check global jenkins > > configuration