Copy only the changed file in bitbucket to the development server , using send build artifacts over ssh jenkins - PHP

2014-09-18 Thread Kanishka Bandara Panamaldeniya
http://stackoverflow.com/questions/25904727/copy-only-the-changed-file-in-bitbucket-to-the-development-server-using-send-b# HI i am using jenkins and bitbucket , when ever my files changed in bitbucket my jenkins build runs , so now i want to send the chaned file from bitbucket to my

RVM plugin and BuildWrapper class

2014-09-18 Thread Serghei Anicheev
Hi guys, I have a problem described here http://pastebin.com/6DWwbU4A. I created job adasd and enabled build wrapper using rvm plugin with UI. I tried to do the same with groovy but no luck yet.Can anyone provide a quick tip how i should create wrapper class for later use? From Jenkins source

Plain text in build

2014-09-18 Thread Bartosz Jabłonka
Hi, When I install my plugin in new project, every new build is a href to plain text with source code of website but it should be a href to website. Thanks for all help. Regards, Bartosz -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To

Processing failed due to a bug in the code

2014-09-18 Thread hagen . seifert
Hello, I get the following error since some days from our Jenkins. Any idea what the problem could be? [...] 14:02:01 [INFO] 14:02:01 [INFO] BUILD SUCCESS 14:02:01 [INFO]

RE: keep forever buttons

2014-09-18 Thread Ginga, Dick
You are a wise man Daniel Beck. Thanks -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Daniel Beck Sent: Wednesday, September 17, 2014 5:08 PM To: jenkinsci-users@googlegroups.com Subject: Re: keep forever buttons The ones

Jenkins 1.580 and Windows slave connect

2014-09-18 Thread ycollet
Hello, Since I upgraded to 1.5.80, I am not able to connect my windows Slave to my jenkins linux master. I've got the followig error in the windows console: 18 sept. 2014 15:20:31 hudson.remoting.jnlp.Main createEngine INFO: Setting up slave: Windows64 18 sept. 2014 15:20:31

Jobs not started even though executors are available

2014-09-18 Thread Tomhe
We're experiencing a problem in Jenkins where Jenkins does not start jobs even though there are available executors. The jobs say Waiting for next available executor on We have around 40 slave nodes and sometimes end up with 30 or so idle nodes and a long queue of jobs that won't start.

Re: Jobs not started even though executors are available

2014-09-18 Thread Tomhe
We're running LTS 1.565.1. -- 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

RE: Jobs not started even though executors are available

2014-09-18 Thread Ginga, Dick
I have had problems with MAC’s when they go into idle power down mode. I disable that mode. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Tomhe Sent: Thursday, September 18, 2014 9:34 AM To: jenkinsci-users@googlegroups.com Subject: Jobs not

Re: Performance of Jenkins slaves

2014-09-18 Thread Alex Demitri
Hosts are dedicated to these VMs. Hosts are configured as 20 vCPUs / 384 gb ram per host. There are three hosts in the cluster. Only VMs living on the cluster are the jenkins slaves (3 vms) - jenkins master (1 vm). Alex On Wednesday, September 17, 2014 10:36:13 PM UTC-7, LesMikesell wrote:

Re: Jenkins copy files to next/current build number

2014-09-18 Thread techie24by7
Could any one guide me on this On Monday, September 15, 2014 11:03:49 AM UTC-4, techi...@gmail.com wrote: Hello All, How you doing. I have question on copying files to current/next build number after build completion. *Path :* (22 is build number) ,

RE: Jenkins copy files to next/current build number

2014-09-18 Thread Matthew.Webber
You don’t say what your question is, which makes it hard to answer! You probably need https://wiki.jenkins-ci.org/display/JENKINS/Copy+Artifact+Plugin From: techie24...@gmail.com [mailto:techie24...@gmail.com] Sent: 18 September 2014 15:36 To: jenkinsci-users@googlegroups.com Subject: Re:

Re: Performance of Jenkins slaves

2014-09-18 Thread Les Mikesell
On Thu, Sep 18, 2014 at 8:48 AM, Alex Demitri alex.demit...@gmail.com wrote: Hosts are dedicated to these VMs. Hosts are configured as 20 vCPUs / 384 gb ram per host. There are three hosts in the cluster. Only VMs living on the cluster are the jenkins slaves (3 vms) - jenkins master (1 vm).

Re: Performance of Jenkins slaves

2014-09-18 Thread Alex Demitri
Also, i received suggestions to move to SSD and contention of disk resources.. How are disk resources affecting the time of the build? Alex On Thursday, September 18, 2014 6:48:35 AM UTC-7, Alex Demitri wrote: Hosts are dedicated to these VMs. Hosts are configured as 20 vCPUs / 384 gb ram

Removing old jobs from Jenkins

2014-09-18 Thread Alex Brodov
I have a lot of jobs in jenkins, i'd like to know how can i shelve them, as far as i know there is a way tu run a script in Jenkins that will do that, for example if i have job 'x' that has 100 builds and job 'y' that has 120 builds and i want to make a rule that will delete all the builds log

Re: Performance of Jenkins slaves

2014-09-18 Thread Scott Evans
Alex, IF your builds are doing a lot of disk reading/writing and you're running multiple builds in parallel, you might be limited in build performance by how fast your hardware can read/write to disk. If multiple builds are all doing a bunch of disk activity at the same time, you may be maxing

Re: Performance of Jenkins slaves

2014-09-18 Thread Mark Waite
As another alternative, you could ask several of the developers on your team if they would allow you to temporarily run a slave on their computer for a performance test. Configure the same job to run first on your VM environment, then on the borrowed developer computers, and compare the results.

Re: Removing old jobs from Jenkins

2014-09-18 Thread Eric Pyle
If you want to save only the 10 most recent builds, go into the job configuration and check the Discard Old Bulds box, and set Max # of builds to keep to 10. Be sure to save your changes. No builds will be deleted until the next time the job is run. Regards, Eric On 9/18/2014 11:05 AM, Alex

Re: Performance of Jenkins slaves

2014-09-18 Thread Les Mikesell
On Thu, Sep 18, 2014 at 9:55 AM, Alex Demitri alex.demit...@gmail.com wrote: Also, i received suggestions to move to SSD and contention of disk resources.. How are disk resources affecting the time of the build? With disks, it is usually head seek time that is much more of a problem than data

Re: Removing old jobs from Jenkins

2014-09-18 Thread Alex Brodov
Hi Eric, I want to delete in every job the first 10 [1-10] builds but i don't wnat to go over every job (i have more then 150 jobs) and do that, there is any way to do that using a script or jenkins CLI command or groovy script? 2nd thing is how can i delete a specified range of builds in a

Re: Authetication using LDAP and Local User

2014-09-18 Thread Rodrigo Maccari
Hi Robin, Thanks for your suggestion, I used the PAM and it worked! 2014-08-30 5:47 GMT-03:00 Robin Rosenberg robin.rosenberg.li...@dewire.com: - Ursprungligt meddelande - Från: Rodrigo Maccari rodrigo.macc...@gmail.com Till: jenkinsci-users@googlegroups.com Skickat: fredag, 29

Re: Removing old jobs from Jenkins

2014-09-18 Thread Eric Pyle
Something like this. For safety, I've written this to print out the list of builds it would delete. Uncomment the delete() line to actually delete builds. As written this would delete the 10 oldest builds of all jobs. If you wanted to delete a specified range of builds of a particular job, it

Re: Removing old jobs from Jenkins

2014-09-18 Thread Alex Brodov
Great, I'll try that , do you know where can I find some documentation for thia ? What packages should import? Is it based on java ? Thanks, Alex On Sep 18, 2014 11:37 PM, Eric Pyle eric.p...@cd-adapco.com wrote: Something like this. For safety, I've written this to print out the list of

AD Plugin oddity

2014-09-18 Thread Jamie Lawrence
Hello all, I am setting up a new jenkins install running LTS (1.565.2). We use the Active Directory plugin here. Copying the config from a (rather old) installation did not work; it threw an AuthenticationException. By way of troubleshooting in various ways, I ended up where I am now: with a