Re: Manual build step support

2015-07-31 Thread Peter Hayes
Thanks for the pointer! On Fri, Jul 31, 2015, 4:43 PM Brian Ray be_...@sbcglobal.net wrote: There is a simple step available in the worfklow plugin called input. https://github.com/jenkinsci/workflow-plugin/blob/master/TUTORIAL.md#pausing-flyweight-vs-heavyweight-executors But it would

Accure plugin is not performing well in Jenkins

2015-07-31 Thread kiran kumar
Hello All, Help required: I am using multiple SCM option in jenkins configuration, and Accurev as SCM. After providing my Accurev Depot Stream info, able to save with out any errors. But my Depot and stream info is getting changed to another Depot(first one in the list), with out my

Re: Jenkins: Error in Publishing Selenium Report

2015-07-31 Thread mr
Try Copy To Slave Plugin http://wiki.jenkins-ci.org/display/JENKINS/Copy+To+Slave+Plugin or similar Copy-Artifacts-Plugin. Am Donnerstag, 30. Juli 2015 12:15:35 UTC+2 schrieb Selenium Integ: Hi! I have properly configured the selenium hq plugin into Jenkins. I've also tried to run it in my

Wiki is down

2015-07-31 Thread Ginga, Dick
I guess the wiki and plugin pages are down? -- 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. To view this

How do i pass a build number from an upstream job to a downstream job using the build pipeline plugin

2015-07-31 Thread Eric Wood
I have an upstream job that uses the version number plugin to set a build environment variable to something like: 1.0.0.2 I use the Build Pipeline plugin to trigger a downstream job manually and I want to pass this value down the pipeline to use.  I cannot use the parameterized build trigger

Run job if other job has succeeded within certain time frame

2015-07-31 Thread Porter Bassett
I want jobB to run if and only there has been a succesful build of jobA within the last 6 hours. I tried using the Build Result Trigger plugin, but when it does its polling, it appears to just look at the latest build. If jobA had a succesful build and then a failed build, I want jobB to

Baseline for build result comparison

2015-07-31 Thread Bernhard Haumacher
Hi, I'm able to parametrize a build with the branch name for checkout. Nevertheless, the build results for all such branch builds are linearly ordered. This means that on the JUnit test result page, the result of build #n is always compared to the result of #n-1. If those builds are not for

Manual build step support

2015-07-31 Thread Peter Hayes
Hi, I am doing a proof of concept of codifying our delivery pipeline within Jenkins. We have a number of our stages automated but we do have a couple stages that require manual inspection of the software. I was thinking that it would be cool if there was a build step type that you could

Re: Use port 80 for Jenkins

2015-07-31 Thread Slide
What OS are you running on? On more recent versions of Windows, you have to enable an application to listen on port 80. Linux requires root to run applications that listen on ports under 1000. On Fri, Jul 31, 2015 at 11:38 AM Martin lingv...@gmail.com wrote: Hello, I wanted to use 80 for

Re: Use port 80 for Jenkins

2015-07-31 Thread Thomas Fürer
on many systems you need administrative privileges to use a port between 0 to 1024. normally a apache httpd (or nynx) demon runs at this port and routes to the internal 8080 port. tom Am 31.07.2015 um 20:37 schrieb Martin: Hello, I wanted to use 80 for Jenkins server. and I executed the

Re: Manual build step support

2015-07-31 Thread Brian Ray
There is a simple step available in the worfklow plugin called input. https://github.com/jenkinsci/workflow-plugin/blob/master/TUTORIAL.md#pausing-flyweight-vs-heavyweight-executors But it would require your job to be a worfklow job and does not support a very sophisticated input form, AFAIK.

REST API to create Credentials in jenkins

2015-07-31 Thread Naga Rakesh
Hello, I have created jenkins job through API and now trying to figure out how to create credentials through the API. Any help would be appreciated. Thanks, -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and

Jenkins Windows installer for 1.622 version - Issue while downloading

2015-07-31 Thread Vinodhini Vijay
Hello All, I couldn't download Jenkins Windows installer - Native package. While downloading, I am getting 0 bytes zip file - jenkins-1.622.zip file. Kindly help!! Thanks -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from

Triggering a single matrix projection

2015-07-31 Thread Paulo Matos
Hi, I have a 2 x 2 matrix job and I want to trigger the job by projecting the matrix through one of its axis. Is this possible? So, if the matrix is Foo1 foo2 Bar1 X X Bar2 X X I want to be able to say: trigger all jobs along Foo1. This would trigger Foo1,Bar1 and