Re: Jenkins Surefire Cross Reference Source code

2013-09-02 Thread Baptiste Mathus
Hi, Surefire is an *apache Maven* plugin, not a Jenkins one. Please address your questions to Maven Users mailing list. Le 29 août 2013 08:42, Gaurang shah gaurangns...@gmail.com a écrit : Hi Guys, Is there any way I can cross reference source code in Surefire plugin of Jenkins. I got this

Re: Collect artifacts from multi-config build and upload to a server

2013-09-02 Thread Baptiste Mathus
Inside jenkins, under manage plugins, have you had a look at the plugins containing the word SSH? Why/in what area don't they suit your needs? Cheers Le 29 août 2013 23:26, Roland Asmann roland.asm...@gmail.com a écrit : Hi all, I currently have an environment set up with 5-7 jenkins

Re: Editable Email Notification - fails to send email to developers

2013-09-02 Thread Avihay Eyal
Hi, I'm sorry, but it seems that the fault was mine. I tested it from a Mercurial repository, mounted from Linux to windows machine, and there it didn't work. When I tested it from a regular repository, it worked well. On Monday, September 2, 2013 12:45:13 AM UTC+3, slide wrote: How was your

Git push back changes

2013-09-02 Thread David Karlsen
I'm having problems getting jenkins to push back the merged branch to origin repo. (everything else works but the push back to the repository). Looks like this issue: http://jenkins-ci.361315.n4.nabble.com/Git-publisher-fails-to-push-td4659177.html I'm running: -bash-3.2$ cat

Debug connection between node and master

2013-09-02 Thread ycollet
Hello, I have started a Linux node via ssh. On the node, I can see the jars copied from jenkins in the directory I specified for the node and the log when I start the node seems OK. I also can see the java -jar slave.jar running. When I start a job, a job directory is created in workspace and

Jenkins Distributed Environment Setup

2013-09-02 Thread Gaurang shah
Hi Guys, Is there any wiki page or blog post where set up of Jenkins Distributed Environment is explained in details. Things like - How to run one build on multiple nodes for load balancing - How to run same job parallel in same node - How to run same build on multiple nodes

Browser not opening in Other machine

2013-09-02 Thread pradeep kattekola
Hi frnds , I am new to Jenkins. I created job in one machine and running the same job in other machine with http://192.168.37.127:8080 i am able to see the jobs but when executing the jobs , browsers opening on remote machines its opening in server machine. how to view the browsers in same

Browser not opening in remote machines when accessing from remote machines

2013-09-02 Thread pradeep kattekola
Hi frnds , I am new to Jenkins. I created job in one machine and running the same job in other machine with http://Ip-address:8080 i am able to see the jobs but when executing the jobs , browsers opening on remote machines its opening in server machine. how to view the browsers in same

Re: Debug connection between node and master

2013-09-02 Thread ycollet
I tested another way to run the slave: - I logged on the slave, open firefox and connect to the master jenkins web page. - here, I configured the node and select java web start to start the node. - On the node, I enter the following command: java -jar slave.jar -jnlpUrl

Aw: gradle sonar-runner fails on Jenkins

2013-09-02 Thread Christoph Kutzinski
For reference: the problem turned out that the project name on Jenkins contained a whitespace while the directory on my developer machine didnt Since Gradle automatically takes that as project.name and the sonarRunner obviously doesnt like white space in the project name, it failed on

Re: Git push back changes

2013-09-02 Thread Mark Waite
The bug you referenced is fixed in the current versions of the git client plugin and the git plugin.  I can confirm that Git plugin versions 1.4.0 and 1.5.0 are able to publish changes when used with git client plugin 1.1.2. Unfortunately, that probably doesn't help you, since there is still

Re: Browser not opening in Other machine

2013-09-02 Thread Baptiste Mathus
Hi, IIUC, you want the jenkins server to run the tests on the machine you're using. It's basically not possible unless you add that client machine as a jenkins slave. Cheers Le 2 sept. 2013 13:22, pradeep kattekola pradeepkattek...@gmail.com a écrit : Hi frnds , I am new to Jenkins. I

Re: Jenkins Distributed Environment Setup

2013-09-02 Thread Baptiste Mathus
Hi, Search for jenkins definitive guide. Le 2 sept. 2013 13:00, Gaurang shah gaurangns...@gmail.com a écrit : Hi Guys, Is there any wiki page or blog post where set up of Jenkins Distributed Environment is explained in details. Things like - How to run one build on multiple nodes for

Re: Browser not opening in remote machines when accessing from remote machines

2013-09-02 Thread Baptiste Mathus
Hi, Your mail was received. Please don't repost. Just check the archive to see if the first reached the mailing list. Thanks Le 2 sept. 2013 13:31, pradeep kattekola pradeepkattek...@gmail.com a écrit : Hi frnds , I am new to Jenkins. I created job in one machine and running the same job in

Morgan Fletcher has invited you to use Google Talk

2013-09-02 Thread Morgan Fletcher
Morgan Fletcher has invited you to sign up for Google Talk so you can talk to each other for free over your computers. To sign-up, go to:

Access jenkins data in groovy scripts, vs the Script Console

2013-09-02 Thread Morgan Fletcher
I want to be able to access the first seven characters of the current git commit SHA-1 hash, from a gant groovy script I run via a build step in my project (Build With Grails - Use Grails Wrapper - Targets = the default target in the gant script.) I can get that string in the Manage Jenkins -

Re: Access jenkins data in groovy scripts, vs the Script Console

2013-09-02 Thread Morgan Fletcher
Er, nevermind: +def gitHash = (git rev-parse HEAD.execute().text[0..6]) +println Git hash is $gitHash + Morgan On Mon, Sep 2, 2013 at 5:07 PM, Morgan Fletcher mor...@hahaha.org wrote: I want to be able to access the first seven characters of the current git commit SHA-1 hash, from a