[git-client-plugin-master]

2016-07-04 Thread nadishka prabhashani
Hi, I am new to open source contribution. I like to contribute Jenkins git-client-plugin-master project. But I don't understand from where to start. So I need your help. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this g

Re: Multi-configuration project from parameters.

2016-07-04 Thread Fred Clausen
Thanks Mark, I'll check that out. On Tuesday, July 5, 2016 at 10:00:31 AM UTC+10, Mark Waite wrote: > > Elastic axis plugin allows you to define a job which runs on all slaves > which match a certain label. I use it to run certain jobs on all slaves. > > Mark Waite > > On Mon, Jul 4, 2016 at 5:1

Re: pipeline : extend "node" ?

2016-07-04 Thread Jonathan Hodgson
Thanks guys, looks like exactly what I was looking for. > > -- 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 vi

Re: Multi-configuration project from parameters.

2016-07-04 Thread Mark Waite
Elastic axis plugin allows you to define a job which runs on all slaves which match a certain label. I use it to run certain jobs on all slaves. Mark Waite On Mon, Jul 4, 2016 at 5:14 PM Fred Clausen wrote: > Hello, > > We have a artifact cache cleaning job that uses the multi-configuration's

Multi-configuration project from parameters.

2016-07-04 Thread Fred Clausen
Hello, We have a artifact cache cleaning job that uses the multi-configuration's "configuration matrix" to select slaves to run on (via the "slaves" axis). Unfortunately we have to manually select slaves and if a new one is added then remember to select that one as well; we'd like to automate t

Re: pipeline : extend "node" ?

2016-07-04 Thread Baptiste Mathus
Example: https://github.com/jenkinsci/jenkins/blob/master/Jenkinsfile#L184L190 HTH 2016-07-04 15:39 GMT+02:00 Daniel Beck : > This should get you started: > > https://github.com/jenkinsci/workflow-cps-global-lib-plugin#pipeline-global-library > > > On 04.07.2016, at 11:49, Jonathan Hodgson wrot

Re: How exactly does stash / unstash work AND how to use the same node in different stages

2016-07-04 Thread Stephen Connolly
I haven't looked into this closely... it being mostly Jesse's baby... but: The point of using stash and unstash is to enable Jenkins to be smarter about the files. If Jenkins knows you are stashing and unstashing then Jenkins can be smarter about what it does... e.g. using local copies where that

array of identical Jenkins jobs, redundant code – how to replace using a "super-feature"?

2016-07-04 Thread Jochen Hayek
We do have like 10 Jenkins jobs here, and they all call the same batch script, always with the Jenkins job name as parameter in order to give the batch script an opportunity to decide who is who. I knew that kind of redundancy is bad, but I don't know a better approach yet. I don't think a usual

Jenkins and Os Path

2016-07-04 Thread inforedaster .
Hi, i have a problem with my jenkins 1.642.2 in Red hat when i execute : [root@ip~]# echo $PATH /usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin but when i do it in my jenkins job test, i have this : [job] $ /bin/sh -xe /tmp/hudson866244923995655744.sh + echo /

Re: PermGen errors on master and slave

2016-07-04 Thread mikeeSSL
Thanks, I have upgraded the master and that seems to have done the trick. -- View this message in context: http://jenkins-ci.361315.n4.nabble.com/PermGen-errors-on-master-and-slave-tp4820241p4824860.html Sent from the Jenkins users mailing list archive at Nabble.com. -- You received this mess

Re: pipeline : extend "node" ?

2016-07-04 Thread Daniel Beck
This should get you started: https://github.com/jenkinsci/workflow-cps-global-lib-plugin#pipeline-global-library > On 04.07.2016, at 11:49, Jonathan Hodgson wrote: > > Hi, > > I'm still very new to groovy, so please forgive me if the answer to this > seems obvious. > > In my pipeline project,

Re: How exactly does stash / unstash work AND how to use the same node in different stages

2016-07-04 Thread Christian Ditscher
Hi, @Baptiste: Your suggestion sound more me like my last suggestion. Checking out, stashing and then unstashing again. (This could be a solution if it were clear how exactly the stash/unstash works. --> What is transferred? Where are stashed files located/saved?) In general I would like to re

Report plugin for custom test framework?

2016-07-04 Thread Jeroen Reijn
Hi all, at my current client they've developed a custom test tool that, which leverages Selenium amongst others, which I would like to integrate with Jenkins. Being able to execute the tool is easy. It's a java executable, which I just execute from a shell script. So far so good. I've made some

Re: Display the jobs that have upstream or downstream jobs

2016-07-04 Thread Oparlescu Vlad
Or is this Plug-in only working for the jobs that will be created from now on ? Does it works also for the existing ones?? On Monday, July 4, 2016 at 2:13:03 PM UTC+3, Oparlescu Vlad wrote: > > Hello guys, > > does the plug-in Build Flow Plugin >

Display the jobs that have upstream or downstream jobs

2016-07-04 Thread Oparlescu Vlad
Hello guys, does the plug-in Build Flow Plugin will resolve my problem to display the jobs with uppstream and downstream jobs? I'm asking this because I have to deploy first some other plug-ins before *Build Flow *(it seems that

Jenkins deadlock while loading jobs after plugin updates

2016-07-04 Thread Pieter-Jan Busschaert
Hello, This morning I updated plugins on Jenkins 2.11, however after the restart Jenkins stays on the "Please wait while Jenkins is getting ready to work..." page. I took a JVM thread dump and see "Found one Java-level deadlock", which lists the loading of 2 jobs. Plugins which I updated:

pipeline : extend "node" ?

2016-07-04 Thread Jonathan Hodgson
Hi, I'm still very new to groovy, so please forgive me if the answer to this seems obvious. In my pipeline project, there are things I want to do at the start of every node, so they would look something like node { do_common_stuff build_project } node { do_common_stuff test_

Re: Set a default branch if it doesn't exist downstream

2016-07-04 Thread Baptiste Mathus
2016-07-01 6:15 GMT+00:00 Antonio Hernandez : > Hi, > What is a pipeline Script? > https://jenkins.io/pipeline/getting-started-pipelines/ > The only thing comes to my mind is something like this: > > git_status="`git status -unormal 2>&1`" > if [[ "$git_status" =~ Not\ a\ git\ repo ]]; then >

pipeline exceptions and project information - documentation

2016-07-04 Thread Jonathan Hodgson
Hi, In order to properly implement my pipeline script I need to deal with exceptions, and also to have access to various bits of information about the current build.. build name, url , workspace folder etc. I'ev managed to find out a little by googling, but is this stuff documented anywhere,

Jenkins Multijob + email ext + notify developers (committers) problem.

2016-07-04 Thread Kamil Bednarczyk
Hello Everyone, I have a multijob project with quite heavy dependencies. There are 3 levels of build procedure: - Project 1 - Project 2 - depending on Project 1 - Projects 3,4,5 - depending on Project 1 and 2 Everything works just fine (if someone changes something in e.g. project 3, t

Re: Jenkins plug-in

2016-07-04 Thread Oparlescu Vlad
Thanks man, it helped a lot !! Cheers On Friday, July 1, 2016 at 10:54:23 AM UTC+3, Björn Pedersen wrote: > > Hi, > > Install the plugin-usage plugin. This twill give you the information (at > least for plugins that are explicitly configured in jobs. Library plugins > are not always detected)

Re: Set a default branch if it doesn't exist downstream

2016-07-04 Thread Antonio Hernandez
Hi there!, Please, anybody can help me to achieve how can handle it? Any help is welcome. El viernes, 1 de julio de 2016, 8:15:43 (UTC+2), Antonio Hernandez escribió: > > Hi, > What is a pipeline Script? > The only thing comes to my mind is something like this: > > git_status="`git status -unormal