Jenkins Workflow: How to run integration tests in parallel

2016-03-23 Thread Frank Hask
Hi all i have been working on tis issue for some time and i cant find solution becouse integration tests run each time in new directory called MyProject@1,2,3,4... I have stated that i want them to run in specific directory but that is not helping. Here is example of my code. parallel( FirstSu

validation plugin

2016-03-23 Thread Shurik
Hi, I search for plugin that can do some validation before job is starting. I want to check the free space on filesystem, db connection. Please advise if this plugin already exists. ( I can't find it in the plugin list ) Thanks, Shurik -- You received this message because you are subscribed

New GitHub Integration/PullRequest plugin

2016-03-23 Thread Kanstantsin Shautsou
Hi all. Maybe it will be useful for somebody. I started making this plugin 1 year ago when wasn't satisfied with ghprb quality. I was able optimise performance and solved various bugs in jenkins and github-api library to make it work better. With @lanwen's help we was able to extend github-plugi

Multi job build in different nodes

2016-03-23 Thread steliosP
I am trying to have a multi job build in Jenkins. The restriction is the following: Let's say we have 3 jobs that need to run sequentially (1,2,3). I want job 1 and 3 to run exclusively on master, and job 2 to run on a node that I,as user I will specify. The problem is that if you use NodeLabel

Re: How to do a simple post request using HTTP request plugin

2016-03-23 Thread steliosP
Thanks Martin for the response. This is kind of odd, not to say ridiculous, since there are extremely rare cases where someone would POST something without a post body! In any case, for future readers of this question, I would say that I bypassed this problem by using shell/batch script in Jenki

introduction

2016-03-23 Thread Bharat Bhushan
Hello, I am Bharat Bhushan from Guru Nanak Dev Engineering College, Ludhiana in 4th year. currently pursuing Computer Science. I am interested work on your GSOC 16 Project idea Integration of Docker plugins with Jenkins 2.0. I have a been interest in virtualization like Docker, kubernerts. I d

cpan2rpm as part of a Jenkins job

2016-03-23 Thread Peter Berghold
Hi there, I'm trying to run the CPAN application cpan2rpm to run as part of a Jenkins job. It isn't working and causes failed builds. When I log in as the Jenkins user (tomcat in this case) and manually run the cpan2rpm command from the command line exactly as it looks in the job it runs fine.

Variables from variables and replacing forward slash with backslash

2016-03-23 Thread Aki K
Hello I want to make variables from a variable that is in format of "projectname/projectfolder" $PROJECT=projectname/projectfolder is gotten as a environment variable from the trigger I want to declare two other variables from this in this format: $PROJECT_BS=projectname\projectfolder $PROJEC

Re: Jenkins 2.0 alpha release available

2016-03-23 Thread Guido Zockoll
I tried alpha-4 and its really a great step. In the meantime i also looked at gitlab-ci (and Travis CI) and i am glad that we now have those job definitions files in Jenkins, too. I am heavily user the config file provider plugin to inject a settings.xml file into my jobs in Jenkins 1. In Jenk

Re: Jenkins Remoting Agent - Expired Certificate

2016-03-23 Thread Prashant Sawant
Hi Thanks I have updated the slave and remoting to 2.53.3 and jenkins to 1.652 , the error is gone but now i am facing issue another issue , when i am trying to launch slave node from slave machine it throws me below exception I am login as admin on slave machine , I am able to access dashbo

Re: Variables from variables and replacing forward slash with backslash

2016-03-23 Thread Eric Pyle
Hi, You say you know how to do this in a Windows batch file. Are you in an "execute shell" build step? If so this is just a shell question. Where do you need to use these new variables you define? If you need to reference them in a later build step, the Envinject plugin

Re: Multi job build in different nodes

2016-03-23 Thread Eric Pyle
I think you could define the node parameter in job 1 as a string, but in job 2 as a node parameter. You would just have to explicitly pass that parameter to job 2. On 3/23/2016 7:25 AM, steliosP wrote: I am trying to have a multi job build in Jenkins. The restriction is the following: Let's sa

Re: Ability to show new repo commits after last build?

2016-03-23 Thread Kevin
Hi Baptiste, at the moment, the devs are manually triggering builds when they are ready (probably once every couple of hours). I agree that it should be happening much more often than that and am going to start getting them used to the idea that as soon as they make a commit, that code will be c

Re: Storing job configurations with source code in VCS

2016-03-23 Thread Tom Moore
On Tuesday, March 22, 2016 at 3:25:17 PM UTC-4, Patrick van der Velde wrote: > > Hi Victor > > Well that's a good start. Being able to verify that the configuration > works is good. However I would really prefer having some kind of UI to > create the configurations to make it easier for users t

WARNING: Caught exception evaluating: h.getRelativeLinkTo(job) in ...Reason: java.lang.NullPointerException java.lang.NullPointerException

2016-03-23 Thread Sandra Gerberding
Hi, I restart my Jenkins and after that all my Jobs are broken. I can't configure my git repositories. I can't create a new Job, all Jobs are broken. What can I do? HELP ME :) We have 40 Jobs for 12 projects. Jenkins must run. There is the following error message on the UI: Failed to connect

Findbug jelly template analysis results are not showing up

2016-03-23 Thread KKN
Hi, We have recently migrated our jenkins to 1.6 version and I have findbug project set. While showing findbug results in email using below jelly template, "Find Bugs warnings info" section shows "Find Bugs Publisher did not get invoked due to an error". But I do not see any error in console.

Re: WARNING: Caught exception evaluating: h.getRelativeLinkTo(job) in ...Reason: java.lang.NullPointerException java.lang.NullPointerException

2016-03-23 Thread Mark Waite
HTTP error code 503 (per https://en.wikipedia.org/wiki/List_of_HTTP_status_codes) means that the server which is providing HTTP access to your git repositories is stating that it is unavailable. If that message is correct, then it needs a change on the server which is hosting git, rather than on t

Re: Opening Html files failed

2016-03-23 Thread jerome
Hi, Thanks, this seem to work, the quote are only needed for arguments for the source part, the sandbox args MUST NOT be quoted to work. Here's an example that mostly work for me to debug: *System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", "sandbox allow-scripts allow-same-origin;

Re: Opening Html files failed

2016-03-23 Thread jerome
Ok finally found it, the flag is not documented by wc3 but I found it here: https://www.chromestatus.com/feature/5708368589094912 adding to sandbox: *allow-popups allow-popups-to-escape-sandbox* now the Doxygen search work again and can open new window upon search click. On Wednesday, March 23, 2

Re: WARNING: Caught exception evaluating: h.getRelativeLinkTo(job) in ...Reason: java.lang.NullPointerException java.lang.NullPointerException

2016-03-23 Thread Sandra Gerberding
Hi Mark, thank you so much. Our Jenkins runs as docker container and I have added nodejs and typescript and had to set proxy, but forgot to set no-proxy for the git server in the container. :) best regards Sandra -- You received this message because you are subscribed to the Google Groups

Re: Jenkins Job Green Even with Skipped Tests

2016-03-23 Thread Henrique de Miranda Gontijo
Hi Arun, That's how JUnit Plugin works - skip is not a failure. The TestNG plugin is the one that set the build as 'unstable' when there are skipped tests: https://wiki.jenkins-ci.org/display/JENKINS/testng-plugin On Tuesday, March 22, 2016 at 2:24:43 PM UTC-7, Arun S wrote: > > Hello All, > >

Parameterized builds in Jenkins (Maven Profiles)

2016-03-23 Thread santhosh . retna
We are working on a legacy project and the first task is to setup a DevOps for the same. The important thing is we are very new to this area. We are planning to use Jenkins and sonarqube for the purpose initially. Let me start with the requirements. - Currently the the project is sub divid

Re: Jenkins 2.0 alpha release available

2016-03-23 Thread Daniel Beck
On 23.03.2016, at 14:31, Guido Zockoll wrote: > In Jenkins 2 i cannot find an option to inject those files into the > Jenkinsfile based Pipeline. I only found an example with references > ~/.m2/settings.xml in the script, but how can i reference a provided settings > file? Config File Provid

Meet jenkins.io

2016-03-23 Thread R. Tyler Croy
I finished up the final work for migration from https://jenkins-ci.org to https://jenkins.io today. The final step of the switchover was to redirect non-mapped URLs from jenkins-ci.org over to jenkins.io. This project has been a tremendous amount of work with Gus Reiber, Baptiste Mathaus, James D