cleanup of matrix job status table after combination filter changed

2013-08-22 Thread Simon Haegler
hi jenkins users we have a matrix job where we recently changed the combination filter, now the status table (red/blue balls) displays old (invalid) statuses of combinations which are not built anymore. how can we reset those back to grey/neutral, to less confuse our users? thanks, simon --

debugging groovy script in the context of a maven job...

2013-08-22 Thread Jeff
I found a Groovy script online that extracts the Maven version of the Jenkins Maven build job to an environment that I can then use in a wget call to a REST endpoint in a post-build action. I've found that if the Maven job has never run, the Groovy script fails so I wanted to play with some error/

Re: Parameterizing HTTP request plugin...

2013-08-22 Thread Jeff
I sent this a while ago but didn't get a response. I've used a Groovy script to get the MAVEN_VERSION and in the HTTPRequest URL I want to send the value of $MAVEN_VERSION but it doesn't get replaced. Do I need to do something else in the job config for it to recognize the $MAVEN_VERSION environm

Re: Extra "Build with Params" menu ... where is it coming from?

2013-08-22 Thread Jeff
On Thu, Aug 22, 2013 at 1:21 PM, William Soula < william.so...@drillinginfo.com> wrote: > Parameterized Are you sure? It's referenced here https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Build and I don't see any mention of the "Build with Parameters" link on the plugin page. -- J

Re: Build flow graphs are missing after update version 0.10

2013-08-22 Thread Slide
I take back my previous statement, the graph does appear, it just took some time to have it generated. On Thu, Aug 22, 2013 at 12:28 PM, nicolas de loof wrote: > still the case, build-flow contribute a custom relation provider for > build-graph view to show flow sequence > > > 2013/8/22 Slide >

Re: Build flow graphs are missing after update version 0.10

2013-08-22 Thread nicolas de loof
still the case, build-flow contribute a custom relation provider for build-graph view to show flow sequence 2013/8/22 Slide > None of my jobs fingerprint anything, so there is no downstream job > relationship. The previous version of the plugin showed me a nice graph as > it built things even w

Re: Build flow graphs are missing after update version 0.10

2013-08-22 Thread Slide
None of my jobs fingerprint anything, so there is no downstream job relationship. The previous version of the plugin showed me a nice graph as it built things even without the relationship there, why did that go away? On Thu, Aug 22, 2013 at 11:47 AM, Michaël Pailloncy wrote: > It works nice for

Re: Jenkins job skip some unit tests

2013-08-22 Thread Richard Bywater
This sounds more like the system that is running the tests needs to change. For example if it was Ant then you'd change failonerror to false. HTH Richard On Thursday, August 22, 2013, ngd wrote: > Hi guys, > > I'm new here and I hope I post in the right category. > I've searched and I've searche

Re: Using Jenkins to automated testing

2013-08-22 Thread Richard Bywater
Personally I'd do as you say in terms of running the tests but would use one job for both. I don't see a benefit in having two as you'd get the same result using stable/unstable/failed I think? Richard. On Friday, August 23, 2013, Eric Pyle wrote: > Hi Mateusz, > > Yes, I would run the Perl scri

Re: Build flow graphs are missing after update version 0.10

2013-08-22 Thread Michaël Pailloncy
It works nice for me. build-graph-view plugin seems to show a graph only with downstream jobs of the current project (in plugin's wiki :"This plugin computes a graph of related builds starting from the current one, and render it as a graph."). Maybe you attempt to see a graph on a job that has onl

Re: Run shellscript only if changes in git repository

2013-08-22 Thread Michaël Pailloncy
Hi, You can configure a job to be triggered only if changes occured to a specific path of your repository. There is a 'Include' field in the advanced part of the Git configuration that you can fill with a regex like "**/*.css". Hope this help. Michaël 2013/8/22 Paul McGregory > Hi, > > is i

Extra "Build with Params" menu ... where is it coming from?

2013-08-22 Thread Jeff
I just set up a new Jenkins box and have one parameterized job. However, there are two menu options on the left and one doesn't work right. The "Build with Parameters" link is the correct one and works fine. The other "Build with Params" link appears on ALL jobs, not just a parameterized build a

[Jenkins][ruby]: how to integrate my ruby test cases to jenkins and see the build flow

2013-08-22 Thread Krishna Gundala
Hi Jenks, I need help in integrating my ruby functional test cases to run on Jenkins against dev builds. My project is Maven project and Functional test cases are written in Ruby. Can any one help on this? Thanks in advance. Regards, GMK -- You received this message because you are subscribe

RE: EXTERNAL: ClearTool on shell

2013-08-22 Thread Ng, Jeff
If your intent is to execute a command within the context of a view, you need to use the -exec option to the setview subcommand. Example: cleartool setview -exec 'run your command here' someExistingView If you want to use the view that you defined in the "View tag" field, you can use the varia

Re: Using Jenkins to automated testing

2013-08-22 Thread Eric Pyle
Hi Mateusz, Yes, I would run the Perl scripts from a "execute shell" step. However, I would recommend separating the software build and the running of the tests into two separate jobs. If the build job does not succeed for some reason, there is no need to run the tests, and this will give you

ClearTool on shell

2013-08-22 Thread Mateusz Polański
Executing [quote]cleartool setview someexistingview[/quote] in an execute shell action on a Jenkins instance running on a redhat server I get the following in the console output: [quote]stty: standard input: Invalid argument[/quote]. Other cleartool commands like "lsview" or "pwv" are working fine.

Using Jenkins to automated testing

2013-08-22 Thread pm
Hi, I'm a trainee at a testers team, which is going to use Jenkins to do automated testing of the products of our company. The tests are written in Perl. Is it a good practice to run these by executing shell as a post-build action? Or are there any plugins which would be useful to do that? I would

Where can I get more info for a polling error with the IvyTrigger Plugin?

2013-08-22 Thread Edwin Castro
I'm trying to use the IvyTrigger Plugin. I've configured a job to use my ivy.xml and my ivysettings.xml but the job does not trigger a build when a new revision of its dependency gets published. I expect there's a configuration problem somewhere, but the IvyTrigger Log is not showing me any useful

Re: logging to another file than catalina.out

2013-08-22 Thread nweiler
I'm having the same problem. Would you be able to provide some more info or perhaps an example on how to do this? According to the Tomcat documentation I believe I have set this up correctly but I still do not see any output. in ${Catalinba.base}/conf/logging.properties I've created a filehandle:

Jenkins job skip some unit tests

2013-08-22 Thread ngd
Hi guys, I'm new here and I hope I post in the right category. I've searched and I've searched, but I cannot seem to find an answer to my problem: I have a Jenkins ci server that runs some tests. Some of these tests occasionally fail (Instrumentation fails) and the job doesn't continue to run the

Run shellscript only if changes in git repository

2013-08-22 Thread Paul McGregory
Hi, is it possible to run a shellscript only, when e.g. some *.css files are changed in git repository and deployed on slaves? The intention is, to clear the ModPagespeed cache, when a css or js file is changed and deployed on the slaves. Best Regard Gregory -- You received this message beca

ec2 plugin terminate throws NPE

2013-08-22 Thread John Russell
I have several spot slaves that are working, spinning up and spinning down. There are two that I can't kill. If I explicitly delete them I get the stack trace at the end of this email in the Ec2SpotSlave.terminate() method where it doesn't have the "cloud" variable set. I tried restarting the m

Manual Promotion and Upstream Promotion Criteria along with Role Strategy plugin

2013-08-22 Thread deevant07
Hi, I have the following scenario. A build job is created. On successful build i want the build to be promoted by a particular role( "DEV Approvers" - Using Role Strategy Plugin ) to environment say DEV. On successful completion of DEV promotion i want that build to be enabled for promotion to ne

Re: Build flow graphs are missing after update version 0.10

2013-08-22 Thread Slide
When I click on that, nothing shows up. On Wed, Aug 21, 2013 at 10:40 PM, nicolas de loof wrote: > visualization has been moved to build-graph-view plugin, see the build > graph action on sidepannel > > > 2013/8/22 松本幹 > >> Hi All >> >> Buid flow graphs are missing after updated "build flow plu

RE: Jenkins AIX version

2013-08-22 Thread david.doughty
Hi Suri, The theory is sound, I’ve done similar things between Linux platforms without issues. but I would test it first before your linux install is shutdown completely. dD From: Suri [mailto:suresh1256...@gmail.com] Sent: 22 August 2013 12:07 To: jenkinsci-users@googlegroups.com Cc: Doughty

Re: Jenkins AIX version

2013-08-22 Thread Suri
Thanks for your response. My current jenkins is running in Linux platform. This server is planning to deactivate. if i install jenkins in AIX server and copy my existing jenkins /var/jenkins/jobs folder to AIX installed jenkins. will i get all my existing data without any issues? On Thursda

RE: Jenkins AIX version

2013-08-22 Thread david.doughty
I deployed a jenkins slave to AIX, and it worked fine with a RHEL6 master As suggested as long as java is installed, you should be able to follow the generic unix/install, download the LTS release (WAR file). Java -jar Jenkins.war And go from there. dD From: jenkinsci-users@googlegroups.c

Re: Credentials plugin: Domain and credentials not saved in user configuration page

2013-08-22 Thread Stephen Connolly
https://issues.jenkins-ci.org/browse/JENKINS-19308 On 22 August 2013 09:43, Stephen Connolly wrote: > It's a bug > > > On 22 August 2013 09:08, Moral wrote: > >> Hi >> >> My system has: >> >> Tomcat Apache: 7.0.32 >> >> Jenkins 1.528 >> >> Credentials plug in: 1.7.3 >> >> I go to the /jenkins/a

Re: Jenkins AIX version

2013-08-22 Thread Suri
On Thursday, August 22, 2013 1:58:59 PM UTC+5:30, Steffen wrote: > > Hi Suri! > > On Thu, 2013-08-22 at 01:24 -0700, Suri wrote: > > Can anyone please suggest me, whether Jenkins installation is possible > > in AIX server or not. > > As there is Java for AIX this shouldn't be a problem. You d

Re: Credentials plugin: Domain and credentials not saved in user configuration page

2013-08-22 Thread Stephen Connolly
It's a bug On 22 August 2013 09:08, Moral wrote: > Hi > > My system has: > > Tomcat Apache: 7.0.32 > > Jenkins 1.528 > > Credentials plug in: 1.7.3 > > I go to the /jenkins/asynchPeople/ > > I choose my ID profile > > I choose the configure option > > I can see that it is now possible to save C

Re: Jenkins AIX version

2013-08-22 Thread Steffen Breitbach
Hi Suri! On Thu, 2013-08-22 at 01:24 -0700, Suri wrote: > Can anyone please suggest me, whether Jenkins installation is possible > in AIX server or not. As there is Java for AIX this shouldn't be a problem. You don't _have_ to use native packages. Regards Steffen -- You received this messa

Jenkins AIX version

2013-08-22 Thread Suri
Hi, We are planning to install Jenkins in AIX server. i don’t know AIX server Jenkins package is available or not. Can anyone please suggest me, whether Jenkins installation is possible in AIX server or not. -- You received this message because you are subscribed to the Google Groups "J

Credentials plugin: Domain and credentials not saved in user configuration page

2013-08-22 Thread Moral
Hi My system has: Tomcat Apache: 7.0.32 Jenkins 1.528 Credentials plug in: 1.7.3 I go to the /jenkins/asynchPeople/ I choose my ID profile I choose the configure option I can see that it is now possible to save Credential Domains I fill in all the info and click Apply and Save I reenter