Re: Adding a Link in Jenkins dashboard

2014-02-26 Thread fatima zahra Anzour
Thanks for the help :) *ANZOUR Fatima Zahra* *Élève Ingénieur d'Etat en Troisième année à l'Institut National Des Postes et Télécommunications .* *Option: Génie logiciel et Management des systèmes d'Information* *Tél: 06 79 97 49 59* *Mail: anzou...@gm

how to get parameters from db and inject them to Ant build

2014-02-26 Thread iritik
Hi, I'm new in Jenkins and I have a question: I want to run a build that first queries the database and then starts an Any build with parameters from the query. How can I save the query result into a parameter and then inject it to Ant? Thanks -- You received this message because you are subscr

jenkins extended choice parameter linked to Invoke Ant targets

2014-02-26 Thread CK
I have a selection of Ant targets that do a variety of different things, I want to be able to pick and choice which ant target runs in a build. Is it possible to use the extended choice parameter to have a checkbox parameter type, assign these values not using the property file or key and the

Support for JDK 8?

2014-02-26 Thread Robert Krüger
Hi, I did not find any info in the archive. Every once in a while I try starting my Jenkins installation (Mac) using the latest Oracle JDK 8 Previews (including the first release candidate) and get errors with weird stacktraces in some cases when starting, in others when using the web interface. D

Re: Support for JDK 8?

2014-02-26 Thread Mark Waite
Jenkins does not support JDK 8. On Feb 26, 2014 5:47 AM, "Robert Krüger" wrote: > Hi, > > I did not find any info in the archive. Every once in a while I try > starting my Jenkins installation (Mac) using the latest Oracle JDK 8 > Previews (including the first release candidate) and get errors wi

Re: Support for JDK 8?

2014-02-26 Thread Robert Krüger
OK, thanks for the clarification! Then I'll stop testing until I read here that it does :-). On Wed, Feb 26, 2014 at 1:52 PM, Mark Waite wrote: > Jenkins does not support JDK 8. > > On Feb 26, 2014 5:47 AM, "Robert Krüger" wrote: >> >> Hi, >> >> I did not find any info in the archive. Every once

Re: Adding a Link in Jenkins dashboard

2014-02-26 Thread fatima zahra Anzour
is there any tutorial to explain how to use the Sidebar-Link plugin ? *ANZOUR Fatima Zahra* *Élève Ingénieur d'Etat en Troisième année à l'Institut National Des Postes et Télécommunications .* *Option: Génie logiciel et Management des systèmes d'Informat

Cobertura Plugin - is it possible to run coverage on jars but to show sources in plugin?

2014-02-26 Thread Yulia Kantarovich
I am running coverage report on jar files and not the source files. The report works fine. I place the sources under src location mentioned in build.xml for coverage, and do not see the source in Jenkins' coverage report from the links. Is it possible to see the code if I run the report on jars

How to FInish Job Success even if it failed

2014-02-26 Thread Gyanendra Mishra
Hi There i am stuck at a point and need help i am executing webdriver scripts using jenkins if any test fails, build is failed and then i am using post build action to rerun the failed scripts my problem is that if post build task is successful but i see the overall job status as failed is there

subscribe

2014-02-26 Thread Paulo Eduardo Santos
subscribe -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups

Re: How to FInish Job Success even if it failed

2014-02-26 Thread KT Kirk
Add a /bin/true on failed statement. Try: false || true or make test || true -- KTK On Wednesday, February 26, 2014 10:28:49 AM UTC-5, Gyanendra Mishra wrote: > > Hi There > i am stuck at a point and need help > i am executing webdriver scripts using jenkins > if any test fails, build is f

Re: How to FInish Job Success even if it failed

2014-02-26 Thread JonathanRRogers
On Wednesday, February 26, 2014 10:28:49 AM UTC-5, Gyanendra Mishra wrote: > > Hi There > i am stuck at a point and need help > i am executing webdriver scripts using jenkins > if any test fails, build is failed > and then i am using post build action to rerun the failed scripts > my problem is th

Re: For loop in the Jenkins build flow

2014-02-26 Thread Stuart Rowe
parallel() can take a list/map of closures you will want to do this: // construct and collect closures for LATER execution buildClosures = [] for (int i=1; i<100; i++) { def curClosure = { build("a", STEP:i) } buildClosures.add(curClosure) } // execute the closures in buildCl

Re: For loop in the Jenkins build flow

2014-02-26 Thread Marc MacIntyre
Depending on your job, you'll want to add some kind of bogus parameter to the jobs to prohibit deduplication, since Jenkins can coalesce jobs that are run with the same parameters in the queue. I use the current system time in millis. On Wed, Feb 26, 2014 at 2:23 PM, Stuart Rowe wrote: > paral

"Matrix-based security" option is missing

2014-02-26 Thread Josh Santangelo
I'm moving my Jenkins setup from using the internal database to using Active Directory. This change was surprisingly easy. I would also like to use matrix-based security to lock things down a bit more, but the option isn't shown on the /configureSecurity page at all. I swear I've seen it before

Re: CVS Authentication failed!

2014-02-26 Thread Red
I am using Jenkins ver. 1.552 and cvs plugin version 2.11 I can access my CVS repo via ssh. I am not allowed to as user accounts (like the jenkins user) to the system hosting my cvs repo. On

Re: CVS Authentication failed!

2014-02-26 Thread Russell Cecala
Thank you for your reply Michael I am using Jenkins ver. 1.552 and cvs plugin version 2.11 I can access my CVS repo via ssh. I am not allowed to as user accounts (like the jenkins user) to the sy

Re: "Matrix-based security" option is missing

2014-02-26 Thread Daniel Beck
What's new in 1.535 (2013/10/14) * Split matrix authorization strategies into an independent plugin. On 27.02.2014, at 02:03, Josh Santangelo wrote: > I'm moving my Jenkins setup from using the internal database to using Active > Directory. This change was surprisingly easy. I would also like t

RE: How to FInish Job Success even if it failed

2014-02-26 Thread Gyanendra Mishra
Hello Jonathan, Rerun the whole job would not be helpful if there are 2 tests failure out of 10. Rerun would unnecessarily run all 10 tests again. -Gyanendra From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of JonathanRRogers Sent: Thursday, F

RE: How to FInish Job Success even if it failed

2014-02-26 Thread Gyanendra Mishra
Hello Kirk, Before making job success, we need to check that post build task status is success. Please help to define how to mark main job as success only if post build task is success. Regards, Gyanendra Pratap Mishra From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@g

Re: How to FInish Job Success even if it failed

2014-02-26 Thread Jonathan Rogers
Gyanendra Mishra wrote: > Hello Jonathan, > > > > Rerun the whole job would not be helpful if there are 2 tests failure > out of 10. Rerun would unnecessarily run all 10 tests again. In that case, maybe you should consider putting your conditional test re-running in a regular build step rather

deploying a directory structure in tomcat using Jenkins

2014-02-26 Thread Kamal Ahmed
Hi, Has anyone resolved this issue: The application frontend comprises of files , structure such as: workspace/DATASC-UI-DEV-STAGING/datasc-ui/dist $ tree . ├── DataSc.html ├── index.jsp ├── js │   └── DataSc.min.js ├── lib │   ├── ember.js │   ├── handlebars.js │   └── jquery.js ├── META-INF │  

Re: "Matrix-based security" option is missing

2014-02-26 Thread Josh Santangelo
Thanks! That is helpful. However I am having trouble finding the plugin in the “available” list in the plugin manager. If I search for “matrix”, nothing relevant seems to appear. There also seems to be nothing in the "Authentication and User Management” section related to “matrix”. I did find it h

Re: Is a central/shared local Maven Repo still Not safe for Jenkins master and many slaves?

2014-02-26 Thread Baptiste Mathus
Definitely yes. All our machines (Jenkins slaves, developers boxes...) are configured with the right settings to go compulsorily through our nexus server (as we have an authenticated http proxy set up, this would generally fail if you don't). Cheers Le 24 févr. 2014 19:40, "Seena Kasmai" a écrit :