Getting java.lang.OutOfMemoryError: Java heap space

2016-07-11 Thread Prakhash Sivakumar
Hi all, I'm using Jenkins which is deployed on tomcat server. I'm getting the below error when running a task in Jenkins. I have searched for the possibilities which are mentioned on [1] , but I couldn't find any Jenkins related configuration files mentioned. Please provide suggestions to

How to make SCP plugin display "Copy Console output" option

2016-07-11 Thread Gang Xu
Hi all, My OS is CentOS 7 and installed with Jenkins 1.651 stable version I install SCP publish plugin 1.8 and configured it in Jenkins System Administration. After that, I created job and try to configure post-build with "Publish Artificacts to SCP Repo" But I can not find "Copy Console

Re: Jenkins windows service restarting by itself

2016-07-11 Thread Baptiste Mathus
Please do not cross post. This post should be on the users list only. Also, ML protip: your emails *are* read. So, if you don't get an answer, and would like someone to spend her/his free time helping you, it's probably better to show at least you're doing your part of the work: digging on it

Re: Custom metrics

2016-07-11 Thread Andrew Melo
On Friday, June 10, 2016 at 5:42:14 PM UTC-5, Matt Stave wrote: > > You can add build parameters while the build's in flight, with > [jenkinsURL]/cli/command/set-build-parameter > You should be able to refer to those in subsequent builds > > See also

New NPE with ghprb?

2016-07-11 Thread Andrew Melo
Hello all, I have a repository that is configured to have GH send webhooks for PRs, which trigger builds of a multibranch configuration. The most recent updates I pulled causes the following to fire after the job runs: Jul 11, 2016 8:31:59 PM SEVERE

Re: is this a part of JENKINS-17587 bug impacting the pipeline job type?

2016-07-11 Thread niristotle okram
never mind, i got it fixed. On Mon, Jul 11, 2016 at 12:53 PM, niristotle okram wrote: > Declaring the node section in the pipeline workflow script as below > > > node(‘"PHG123" || "PSJ456"’) { > > //some code block > > } > > > Also like this > > > node(‘PHG123 &&

Re: Jenkins windows service restarting by itself

2016-07-11 Thread SACHIN V
Hi All, Did someone face similar issue? Please let me know how to overcome this problem. On Saturday, July 9, 2016 at 8:47:10 PM UTC+5:30, SACHIN V wrote: > > Hi Team, > > Whenever I run UI automation tests, Jenkins windows service is restarting > by itself causing slaves to go offline and

is this a part of JENKINS-17587 bug impacting the pipeline job type?

2016-07-11 Thread niristotle okram
Declaring the node section in the pipeline workflow script as below node(‘"PHG123" || "PSJ456"’) { //some code block } Also like this node(‘PHG123 && PSJ456’ ) //some code block } Both failed to respect the logical operator. jenkins log says : There are no nodes with the

Re: Access workspace of other project

2016-07-11 Thread jerome
Hi again, I'm trying that pipeline plugin (did not touched it yet) just to give myself an idea of what it look like. I'm facing a weird display problem I guess, because the example and walkthrough are talking about Script textArea, but I don't see any into my config web page??? See what I see

Re: HTTP ERROR 403 Problem accessing /view/stage/job/testscripts/1541/logtext/testscript.html. Reason: No valid crumb was included in request

2016-07-11 Thread Kaushal Shriyan
On Monday, 11 July 2016 15:37:22 UTC+5:30, Kaushal Shriyan wrote: > > > > On Tuesday, 5 July 2016 21:03:25 UTC+5:30, Kaushal Shriyan wrote: >> >> Hi, >> >> I am finding the below details while the build job in the Console Output. >> I am running Jenkins version 1.651.3. Please find the below

Re: Access workspace of other project

2016-07-11 Thread 'Björn Pedersen' via Jenkins Users
For your use case using a pipeline(workflow) job with it's stages feature seems an option. Am Montag, 11. Juli 2016 17:26:35 UTC+2 schrieb Jérôme Godbout: > > Hi Björn Pedersen, > > Wouldn't that be a huge waste of disk I/O just to run a small script and > output some data. I would rather not

configure and flexible publish

2016-07-11 Thread Mark Cariddi
Hi, This is my first post to this list, so please bear with me.First of all please understand that I am working in a constrained environment when it comes to updating plugins and the version of jenkins I am using, so I am stuck with what I have. Anyway here is my problem. I have a

Re: Access workspace of other project

2016-07-11 Thread Jérôme Godbout
Hi Björn Pedersen, Wouldn't that be a huge waste of disk I/O just to run a small script and output some data. I would rather not copy over 6Go of project data (without the SCM, with SCM this copy will be a huge waste and burn hard drive for nothing). I do it into another project only to have

Re: Access workspace of other project

2016-07-11 Thread 'Björn Pedersen' via Jenkins Users
Hi, as the workspace is a volatile object in the general case, you should consider https://wiki.jenkins-ci.org/display/JENKINS/Clone+Workspace+SCM+Plugin. Björn Am Montag, 11. Juli 2016 16:16:55 UTC+2 schrieb jer...@bodycad.com: > > Hi, > I have a project that run some code analysis after

Access workspace of other project

2016-07-11 Thread jerome
Hi, I have a project that run some code analysis after the build. I make them into another project that is trigger after the other one. I'm looking to set the Working diirectory with environment variables. Current setup have a custom (under Windows): *Workspace Root Directory* =

Re: Best way to set a timestamp variable in Pipeline build

2016-07-11 Thread Greg Smith
Thanks, That was my fix -- I went to that screen under Manage Jenkins and set those calls to be allowed in the sandbox. Thanks for the help. Cheers, Greg On Friday, July 8, 2016 at 11:20:27 AM UTC-4, Baptiste Mathus wrote: > > Probably you simply want to allow that finding call. > Open

Re: Is there option to display all recursive jobs of build flow in build monitor view ??

2016-07-11 Thread Harry G.
You might want to use pipeline plugin and its stages for this, e.g. testsetlist = ["test_A","test_B", 'testbla'] for (int idx = 0; idx < testsetlist.size(); idx++) { stage testsetlist[idx] execute(testsetlist[idx]) } On Thursday, 7 July 2016 06:30:37 UTC+2, Ram D wrote: > > Hi All, > >

Re: Jenkins plugin to compare and replace files

2016-07-11 Thread Harry G.
This is no Jenkins-specific functionality. Sounds like you just could use a diff tool of your choice and just call it from Jenkins. On Friday, 8 July 2016 18:11:06 UTC+2, Parth Mody wrote: > > I have Java project which has more than 10 WSDL files that are also hosted > on a URL and keep

Re: is their any way to change Project recipient list using api ?

2016-07-11 Thread Harry G.
Mid-term you could also consider moving to email-ext plugin. There you can set a default recipient list centrally or even set receivers dynamically with a pre-send script in the job. On Friday, 8 July 2016 09:52:40 UTC+2, Thethorongil wrote: > > I have 5 environment of Jenkins with more than 100

Re: HTTP ERROR 403 Problem accessing /view/stage/job/testscripts/1541/logtext/testscript.html. Reason: No valid crumb was included in request

2016-07-11 Thread Kaushal Shriyan
On Tuesday, 5 July 2016 21:03:25 UTC+5:30, Kaushal Shriyan wrote: > > Hi, > > I am finding the below details while the build job in the Console Output. > I am running Jenkins version 1.651.3. Please find the below details > > WARNING: No valid crumb was included in request for >