Re: Failing to iterate list with workflow

2015-07-20 Thread David Resnick
Thanks! This is indeed another case of https://issues.jenkins-ci.org/browse/JENKINS-27421 Here is a working snippet: def branches = [:] def jobs = [ 'job-1' ] def jobName for (int i = 0; i jobs.size(); i++) { jobName = jobs[i] // jobName must be used inside the build job closure

Job Generator Build failing with ClassCastException

2015-07-20 Thread murali mohan
Jenkins version is 1.617 The Job Generator job is a parameterized build with 2 variables/parameters. WHen I try to build the job (or generate the job), it asks for the standard Jenkins Job Generator options like Process this job only, Disabled Jobs etc. But it is not asking for the parameter

Re: How can i install jenkins server on rhel 7 machine ? Have anyone done it earlier ?

2015-07-20 Thread Krishna Kumar Tiwari
I want to install standlalone. Please hsare the steps if some have done it earlier ? On Wednesday, 15 July 2015 14:15:50 UTC+5:30, Krishna Kumar Tiwari wrote: Hi I want to install jenkins server on my rhel 7 machine for continuous integration. Has anyone done it earlier ? -- You

Jenkins link for 1.621 not working from Manage Jenkins

2015-07-20 Thread Rinaldo DiGiorgio
The Manage Jenkins is not working. New version of Jenkins (1.621) is available for download http://updates.jenkins-ci.org/download/war/1.621/jenkins.war (changelog http://jenkins-ci.org/changelog.html). (if you click download ) http://ftp-nyc.osuosl.org/pub/jenkins/war/1.621/jenkins.war

Version Issues on Website

2015-07-20 Thread Rinaldo DiGiorgio
http://mirrors.jenkins-ci.org/war/latest/jenkins.war when downloaded is actually 1.620 and not 1.621 from http://jenkins-ci.org/ The changelog page is also broken. http://jenkins-ci.org/changelog -- You received this message because you are subscribed to the Google Groups Jenkins Users

Re: How can i install jenkins server on rhel 7 machine ? Have anyone done it earlier ?

2015-07-20 Thread Mark Waite
The instructions at http://pkg.jenkins-ci.org/redhat/ have worked well for me when I installed a standalone Jenkins on CentOS 7 (a Red Hat clone). Have you tried them? Mark Waite On Mon, Jul 20, 2015 at 5:57 AM Krishna Kumar Tiwari kri1...@gmail.com wrote: I want to install standlalone. Please

Re: gitclient plugin link for 1.81 broken from 1.620 which might be 1.621

2015-07-20 Thread Daniel Beck
I was able to download successfully from the same mirror. Make sure you don't have a broken proxy between your Jenkins and the mirror. On 20.07.2015, at 14:26, Rinaldo DiGiorgio digitalrina...@gmail.com wrote: hudson.util.IOException2: Failed to download from

Re: Version Issues on Website

2015-07-20 Thread Daniel Beck
Thanks for telling us! I'll look into this. On 20.07.2015, at 14:07, Rinaldo DiGiorgio digitalrina...@gmail.com wrote: http://mirrors.jenkins-ci.org/war/latest/jenkins.war when downloaded is actually 1.620 and not 1.621 from http://jenkins-ci.org/ The changelog page is also broken.

gitclient plugin link for 1.81 broken from 1.620 which might be 1.621

2015-07-20 Thread Rinaldo DiGiorgio
hudson.util.IOException2: Failed to download from http://updates.jenkins-ci.org/download/plugins/git-client/1.18.0/git-client.hpi (redirected to: http://ftp-nyc.osuosl.org/pub/jenkins/plugins/git-client/1.18.0/git-client.hpi) at

Tool locations dropdown empty

2015-07-20 Thread Anthony Green
I want to customise the tool locations of my Jenkins Slaves However when I click add to the List of tool locations the 'Name' dropdown menu is empty. Is this a bug or is the a pre-step I've missed out? -- You received this message because you are subscribed to the Google Groups Jenkins Users

Re: Tool locations dropdown empty

2015-07-20 Thread Daniel Beck
You need to configure tools first in Manage Jenkins » Configure Jenkins. On 20.07.2015, at 15:19, Anthony Green anthony.charles.gr...@gmail.com wrote: I want to customise the tool locations of my Jenkins Slaves However when I click add to the List of tool locations the 'Name' dropdown menu

Can we use variables in the custom workspace entry?

2015-07-20 Thread murali mohan
I tried 2 options: 1) Set environment variable from Manage Jenkins - Configure System option. Use the environment variable as ${custom_workspace} 2) Set a parameterized build and define a parameter. Use the parameter as above In both cases, the variable/paremter is not getting substituted with

Re: Tool locations dropdown empty

2015-07-20 Thread Anthony Green
On Monday, 20 July 2015 14:26:10 UTC+1, Daniel Beck wrote: You need to configure tools first in Manage Jenkins » Configure Jenkins. That dropdown is also empty -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group

Forcing another job to run immediately on same node

2015-07-20 Thread Porter Bassett
I am trying to break up a job into two smaller jobs, which I'll call jobA and jobB. I want jobB to run *immediately* after jobA, and on the same node, just like they did when they were the same job. I can use use the Parameterized Trigger plugin to make jobA trigger jobB on the same node.

linux daemon exits unexpected after jenkins completes the shell script

2015-07-20 Thread zhu kane
I put below simple script in 'Execute shell' block, *daemon --name=test-daemon -- sleep 200* *sleep 60* The process 'daemon' and 'sleep 200' should exit after 200 seconds the 'sleep' exits. The jenkins job will be finished in 60 secs. *jenkins 9954 9950 0 21:48 ?00:00:00 sleep 60*

Perl developer

2015-07-20 Thread manikanta . samurai
*Perl developer* Location: NYC *Duration: 9 months* *Responsibilities:* *Work and partner with business and IT teams in various areas of retail banking to develop perl scripting solutions. * *Synthesize and translate Business data needs into creative visualizations in Tableau.* *Provide

Re: Can we use variables in the custom workspace entry?

2015-07-20 Thread Slide
I believe it depends on the type of job that you are running. I do this with FreeStyle jobs with no problem, but it may not work correctly for other types of jobs. On Mon, Jul 20, 2015 at 7:34 AM murali mohan muralih...@gmail.com wrote: I tried 2 options: 1) Set environment variable from

Jenkins behind SSL, my case not going through

2015-07-20 Thread Snd Lt
I used to use these statements to put Jenkins behind reverse proxy for TLS in previous previous job. But somehow these are't working anymore. I'm on # rpm -q httpd httpd-2.4.6-31.el7.x86_64 # rpm -q mod_ssl mod_ssl-2.4.6-31.el7.x86_64 I referred to all the Jenkins proxy guides on here and

Jenkins Runtime Bug

2015-07-20 Thread Charl Erasmus
Please take note of the bug reported, which was reported with the instruction to mail this address. -- 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

RE: Forcing another job to run immediately on same node

2015-07-20 Thread Matthew.Webber
I don’t think there is any way of doing this. Can you explain what you are trying to achieve? If your idea is that Job B will reference the workspace from Job A, then in Jenkins that’s an anti-pattern. The correct approach in that case is for Job A to archive some artifacts, and then Job B

Re: Jenkins Runtime Bug

2015-07-20 Thread Slide
Looks like https://issues.jenkins-ci.org/browse/JENKINS-22853 On Mon, Jul 20, 2015 at 9:16 AM Charl Erasmus agilech...@gmail.com wrote: Please take note of the bug reported, which was reported with the instruction to mail this address. -- You received this message because you are subscribed

Re: Forcing another job to run immediately on same node

2015-07-20 Thread Porter Bassett
Yes, the idea is that I will force jobA and jobB to use the same workspace, and run exactly the same as if they were still the same monolithic job they were before. Using archives doesn't really work me, as the files that would need to be archived are spread throughout the entire workspace,

Re: Specific order for downstream Build other projects ?

2015-07-20 Thread daleq
On Mon, Jul 20, 2015 at 9:53 PM, daleq da...@revolution-computing.com wrote: Using Jenkins 1.619, the execution order of jobs specified in Build other projects is non-deterministic in my experiments. I have about 10 jobs that are listed in Build other projects. I'd like to be able to

Re: Specific order for downstream Build other projects ?

2015-07-20 Thread Nick Stolwijk
As I read your description I think you are looking for a build pipe line. [1] [1] https://wiki.jenkins-ci.org/display/JENKINS/Build+Pipeline+Plugin Hth, Nick Stolwijk ~~~ Try to leave this world a little better than you found it and, when your turn comes to die, you can die happy in feeling

Re: Jenkins behind SSL, my case not going through

2015-07-20 Thread Snd Lt
Thanks. How would you define that otherwise? I thought I already defined it at localhost:8080? Which is where Jenkins is accessible at? On Monday, July 20, 2015 at 8:15:35 AM UTC-7, Corneil du Plessis wrote: The path is missing from your ProxyPass and ProxyPassReverse items. On 20 July 2015

[BuildFlow] How can I set a custom combine policy for parallel jobs

2015-07-20 Thread Mohamed Mansour
I want to run the same job N times in parallel, and pass if failures are less than 10% of N. I have this code to run the parallel jobs: def paramValues = (1..3) def testJobs = [] for (param in paramValues) { def jobParams = [VALUE: param] def testJob = { // call build