Multiple build's results to be reported on separate lines to Gerrit

2015-04-24 Thread Shambhu Sharma
Hi, I am new to Jenkins and Gerrit. I am using version of Gerrit (2.8.5) Jenkins (1.596.2). I have written multiple jobs in jenkins with Gerrit event trigger patchset created. I wanted the results to be displayed on separate lines in Gerrit under reviewer tab. Please let me know how

Git plugin: The following untracked working tree files would be overwritten by checkout

2015-04-24 Thread Tomhe
In some circumstances the git plugin fails during submodule update for us: stderr: error: The following untracked working tree files would be overwritten by checkout: tool/scons/scons-LICENSEtool/scons/scons-README tool/scons/scons-time.pytool/scons/scons.py

Re: Jenkins slave restart

2015-04-24 Thread Mark Waite
Yes, that was what I was suggesting. If your performance tests need enough consistency that the Jenkins slave agent growth is a real problem, then it seems like you should consider not executing the slave on the target node at all. It seems like you may also want to reboot the computer before

Re: Git plugin: The following untracked working tree files would be overwritten by checkout

2015-04-24 Thread Mark Waite
There is an Advanced submodule behaviours section under the Additional Behaviours button in the git section of the job configuration page. If Recursively update submodules is checked, then it should update those submodules. If the additional behavior is added to clean before checkout, that may

jenkins draw up an snapshot (stop slave agent) (pstools)

2015-04-24 Thread Jonas Meier
Hello Jenkins Users, in my company we use the build pipeline plugin for an update test. Recently, we have an problem with the last job. The job does create an snapshot of the slave. Before jenkins starts to create the snapshot, jenkins kill the *jp2launcher* on the external server. (We use

Re: Handling testcases involving reboot during execution of Job on Slave

2015-04-24 Thread Mark Waite
My apologies. My description was wrong. It makes it sound simpler than it actually is, or at least it sounds simpler than the technique I'm actually using to reboot a slave agent. I reviewed the Jenkins job which I have that reboots a Windows machine in hopes of reducing the number of times a

Re: Jenkins slave restart

2015-04-24 Thread pranyt
Hi Mark, Thanks for your suggestion. We thought it was convenient to run Jenkins slave on the machine running the tests because Jenkins would show us the progress of the job while it is running and other nice to have information. Are you suggesting that we launch the target program using

Jenkins 1.607 - Environment Variables Stuck

2015-04-24 Thread Varun Jain
Hey everyone. I'm facing an issue where the environment variables seem stuck and un-updating when running tasks via Jenkins on Windows Slaves. Here are the steps I do to reproduce, and resolve the problem 1. Create new Node and set JUST the home directory 2. Run job with just echo %PATH% 3.

PATH stuck on Windows slaves

2015-04-24 Thread Simon Richter
Hi, I have a Windows slave attached to a master instance running on a Linux system, and find that the PATH environment variable (or really, all variables) get stuck at the value they are first seen at. When I create a new environment variable in Windows and restart the Jenkins service, the

Re: Jenkins - Recent Code changes

2015-04-24 Thread Mark Waite
It is associated with a source code repository. On Fri, Apr 24, 2015 at 2:29 PM Pradeep Anand pradyp.an...@gmail.com wrote: Hello, Is Recent Code changes function of Jenkins (Changes for a specific build) are associated with a source code repository? in other words, if I am doing a build

Efficiently copying artifacts

2015-04-24 Thread Simon Richter
Hi, I have a project that outputs a few large files (compiled DLL and static library) as well as a few hundred header files as artifacts for use by the next project in the dependency chain. Copying these in and out of workspaces takes quite a long time, and the network link is not even near

RPMSign Plugin

2015-04-24 Thread lupindeterd
Hello, Any idea how I can set/configure the GPG key for this plugin? There's a drow-down/selector but can find the way to set it up. thanks lupin -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and stop

RE: Handling testcases involving reboot during execution of Job on Slave

2015-04-24 Thread Jason Pyeron
-Original Message- From: Mark Waite Sent: Friday, April 24, 2015 8:13 My apologies. My description was wrong. It makes it sound simpler than it actually is, or at least it sounds simpler than the technique I'm actually using to reboot a slave agent. I reviewed the Jenkins

Jenkins Docker 0.9beta plugin. How to stop Jenkins Slave from Cloning the Git repos each time- How to re-use workspace?

2015-04-24 Thread krishna kunapuli
Hi, I was able to setup Jenkins running in a docker container and configure plug-in to kick off builds on slaves. How ever, each time a job is run jenkins slave container is trying to clone the entire git repository, downloading all the artifacts for the project. In my case it take 15minutes.

Get last job status and SCM information for a parameter combination run of a job

2015-04-24 Thread laxmi Lachi
HI, I am using parameter build trigger plugin and starting a initiator job which passes different values for same parameter. For example for Branch parameter I will pass branch a, b and c and that will start 3 jobs from same configuration. The next time I start the initiator job it should not

Deploy in Wildfly using Jenkins

2015-04-24 Thread Erick Macedo
Good afternoon people, I'm trying to perform deploy a war in wildfly via jenkins using the Deploy plugin jenkins, however it only allows container to the JBoss 7.x I would like to perform the deploy via jenkins even without using the plugin Apache Maven Deploy Plugin Someone managed to do

Re: Jenkins Docker 0.9beta plugin. How to stop Jenkins Slave from Cloning the Git repos each time- How to re-use workspace?

2015-04-24 Thread Nigel Magnay
Build a slave image with a copy of the git repository and any known artifacts within it. Then the build will only be fetching the diffs. On Fri, Apr 24, 2015 at 4:18 PM, krishna kunapuli kunapul...@gmail.com wrote: Hi, I was able to setup Jenkins running in a docker container and configure

Re: Jenkins Docker 0.9beta plugin. How to stop Jenkins Slave from Cloning the Git repos each time- How to re-use workspace?

2015-04-24 Thread Mark Waite
Another alternative is to build a slave image with a bare copy of the git repository, then use that bare copy as a reference repository in the job definition (see the Additional Behaviours section of the git section of the job configuration). The reference repository reduces the data transfer by

Re: Handling testcases involving reboot during execution of Job on Slave

2015-04-24 Thread Ankit Singhal
Hi Mark, Thanks for the reply. Can you please help me in detailing the steps of doing it. I tried following - Created a build-flow name Start test - After that created 3 freestyle projects. - Project1 : Before Reboot - Command: echo Before Reboot - Project 2 : Reboot -

Doubts about Publish Over SSH Plugin

2015-04-24 Thread Erick Macedo
Hi, Publish plugin installed SSH in jenkins to perform deploy the artifacts generated by the maven on a linux server with wildfly. In SSH Server Name added the server and test the connection is ok. The problem is in session with field Transfers Source files, these files are as to which path?

Re: Jenkins Docker 0.9beta plugin. How to stop Jenkins Slave from Cloning the Git repos each time- How to re-use workspace?

2015-04-24 Thread krishna kunapuli
I took a ssh ready slave image and sudo-ed to the container as jenkins, ran git clone, ran a basic build and committed to docker. When I run a docker container from this new image. I could see the files in there. I don't see expected result of just git update when I use this new image as my

Jenkins - Recent Code changes

2015-04-24 Thread Pradeep Anand
Hello, Is Recent Code changes function of Jenkins (Changes for a specific build) are associated with a source code repository? in other words, if I am doing a build from my local machine (no code is downloaded from any source code repository) then why CHANGES section post build remains empty?

Re: Doubts about Publish Over SSH Plugin

2015-04-24 Thread Richard Bywater
The path of files to transfer is relative to the workspace. Usually you'd transfer over an artifact either created by the job or brought in via something like the Copy Artifacts plugin. Richard On 8:55AM, Sat, 25/04/2015 Erick Macedo erickfmac...@gmail.com wrote: Hi, Publish plugin installed