Re: Stage View in Parallel Exectution

2017-04-27 Thread vishad alekh
Can some please assist on this . Also it will be of great help if anyone 
can tell whether this is possible even ?

On Monday, April 24, 2017 at 7:29:48 PM UTC-5, vishad alekh wrote:
>
> Hi All,
>
>
> I am looking to implement stage view for parallel execute jobs . Let 
> suppose i have five independent job . These five jobs will be called 
> through one job . Now i want to show the stage of all the five jobs 
> separately in the main job from where they are called . Please help me with 
> this .
>
>
>
> Thanks and Regards
> Vishad Alekh
>

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b38afbfb-0afe-493d-8b6c-bef3e1b29412%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


DISK USAGE Pipeline Job

2017-04-27 Thread vishad alekh
Hi All,

I have a pipeline job in which i am not able to see the size of jenkins 
build. whereas the same is coming in freestyle job . I have disk usage 
plugin installed . Can someone please help me with this  I need to get the 
size of jenkins build for a pipeline job.




Thanks and Regards
Vishad Alekh

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/034a60bd-9696-4cc7-a72f-2c11b3d18859%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Stage View in Parallel Exectution

2017-04-24 Thread vishad alekh
Hi All,


I am looking to implement stage view for parallel execute jobs . Let 
suppose i have five independent job . These five jobs will be called 
through one job . Now i want to show the stage of all the five jobs 
separately in the main job from where they are called . Please help me with 
this .



Thanks and Regards
Vishad Alekh

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/00659356-8136-408d-8d28-554142a9a309%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


JUNIT and Module view issue

2017-02-20 Thread vishad alekh
Hi All,


I have a multi pipeline job in which the JenkinsFile is updated in GIT . In 
GIT , the branch name is something like  release/release name . Now when 
jenkins make the job and do the code checkout . the location for the name 
of the folder is changing to %2F inspite of / which i believe is unicode . 
Now i need to implement module view and junit view in the same which i am 
not able to . I believe maven is not able to understand the path . 

Please help me with the same. Let me know if any more info needed .


Thanks and Regards
Vishad Alekh

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/f87a933f-c836-43ca-b8be-912df1e916ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: PermGen issue

2016-10-14 Thread vishad alekh
This jdk upgrade is mainly for application code compilation or Jenkins 
compilation. 



Thanks and Regards 
Vishad Alekh

Sent from my BlackBerry 10 smartphone.
  Original Message  
From: R. Tyler Croy
Sent: Friday 14 October 2016 10:14 PM
To: jenkinsci-users@googlegroups.com
Reply To: jenkinsci-users@googlegroups.com
Subject: Re: PermGen issue

(replies inline)

On Fri, 14 Oct 2016, vishad alekh wrote:

> Hi,
> 
> Yes, I am using multi branch pipeline and also jdk 7. 
> Actually I have made build n compilation job for 3 application. There is a 
> master job which is calling these three jobs in parallel executor. 



For https://ci.jenkins.io we're using Multibranch Pipelines very heavily and I
*believe* that this was putting heavy pressure on the PermGen space in JDK7 and
causing some issues for us.

My solution, as suggested by a few others, was to simply upgrade to JDK8 wihch
has a number of improvements in handling objects which previously were stored
in this PermGen space. I wrote about that here:
http://unethicalblogger.com/2016/10/03/dropin-containerized-jenkins-master.html


If that isn't an option, making the PermGen space much higher might help, but I
*think* that JDK7 simply doesn't clean up the PermGen space properly so you
might still see "leaks."


- R. Tyler Croy

--
Code: <https://github.com/rtyler>
Chatter: <https://twitter.com/agentdero>

% gpg --keyserver keys.gnupg.net --recv-key 1426C7DC3F51E16F
--

-- 
You received this message because you are subscribed to a topic in the Google 
Groups "Jenkins Users" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/jenkinsci-users/xjlojjCKPhI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/20161014164431.GW3357%40blackberry.coupleofllamas.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/20161014193645.5972045.87327.25973%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: PermGen issue

2016-10-13 Thread vishad alekh
Hi,

Yes, I am using multi branch pipeline and also jdk 7. 
Actually I have made build n compilation job for 3 application. There is a 
master job which is calling these three jobs in parallel executor. 



Thanks and Regards 
Vishad Alekh

Sent from my BlackBerry 10 smartphone.
  Original Message  
From: R. Tyler Croy
Sent: Friday 14 October 2016 6:48 AM
To: jenkinsci-users@googlegroups.com
Reply To: jenkinsci-users@googlegroups.com
Subject: Re: PermGen issue

(replies inline)

On Thu, 13 Oct 2016, vishad alekh wrote:

> Hi All,
> 
> I am using Jenkins 2.11. My Jenkins is frequently going down with permGen 
> issue. 
> Even if I am not executing any jobs. 
> My server configuration is pretty good too.
> 
> Can someone please assist with the possible reason for the same. Or any way 
> in which this can be resolved. 
> 
> I have tried increasing the permGen space by passing parameter at the time of 
> startup but no luck. 
> 
> Maven configuration is also done for the same.

Out of curiosity are you using Multibranch Pipeline heavily? The fact that
you're having a PermGen issue means you're likely running on JDK7, can you tell
us anything else about your environment?



- R. Tyler Croy

--
Code: <https://github.com/rtyler>
Chatter: <https://twitter.com/agentdero>

% gpg --keyserver keys.gnupg.net --recv-key 1426C7DC3F51E16F
--

-- 
You received this message because you are subscribed to a topic in the Google 
Groups "Jenkins Users" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/jenkinsci-users/xjlojjCKPhI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/20161014011749.GT3357%40blackberry.coupleofllamas.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/20161014033848.5972045.13477.25939%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


PermGen issue

2016-10-13 Thread vishad alekh
Hi All,

I am using Jenkins 2.11. My Jenkins is frequently going down with permGen 
issue. 
Even if I am not executing any jobs. 
My server configuration is pretty good too.

Can someone please assist with the possible reason for the same. Or any way in 
which this can be resolved. 

I have tried increasing the permGen space by passing parameter at the time of 
startup but no luck. 

Maven configuration is also done for the same.


Please assist. 


Thanks and Regards
Vishad Alekh 

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c2190157-2708-4f49-931e-372b9e4e48a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


moving jenkins_home

2016-10-06 Thread vishad alekh
Hi all,

I have installed Jenkins at /home/user path. My. Jenkins folder is also at same 
path. Now because of space issue I need to move my setup at some other 
location. 
Can anyone please help on how to do the same. 

Thanks in Advance 


Thanks and Regards
Vishad Alekh

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/bbebaf5a-9dba-4f29-ace2-2171946eda84%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Pipeline Issue

2016-10-06 Thread vishad alekh
  Thanks a lot MarkThanks and RegardsVishad AlekhSent from my BlackBerry 10 smartphoneFrom: Mark WaiteSent: Tuesday 4 October 2016 4:20 PMTo: Mark WaiteReply To: jenkinsci-users@googlegroups.comSubject: Re: Pipeline IssueIf the job is not configured to ruin on the master and the master is configured to only run jobs specifically assigned to it, then the job should not run on master. There will still be a clone on the master, but the job won't run there. 
Working directory name had changed with the most recent plugin release. The percent character is not used in the directory name now. Mark WaiteOn Tue, Oct 4, 2016, 12:33 AM vishad alekh <vishadal...@gmail.com> wrote:  Hi Mark,Thanks for your reply.1- I have not configured anything for my master node and still it creates on master. So does that mean it will be running the same way on master node.3- actually my GIT branch structure is something like release/ABC. Now when a job is created with this name it gets a format like release@%2FABC. This format becomes very difficult to handle on Linux boxes. Hence I was wondering if there is anyway to change the name and keep it more easy to use.Thanks and Regards‎Vishad AlekhSent from my BlackBerry 10 smartphone.From: Mark WaiteSent: Monday 3 October 2016 5:29 PMTo: jenkinsci-users@googlegroups.comReply To: jenkinsci-users@googlegroups.comSubject: Re: Pipeline Issue1 - The master agent needs to identify which branches contain a Jenkinsfile and match the branch selection criteria you provided.  In order to do that, the master agent clones the repository and uses that clone for the work on the master agent3 - I've found no way to change the name of the job which is created.  Can you describe how you envision using that changed name, and how you would avoid job name collisions?Mark WaiteOn Mon, Oct 3, 2016 at 12:03 AM vishad alekh <vishadal...@gmail.com> wrote:  Hi Sam,Thanks for your reply. Can anyone please assist me with number 1 and number 3.Thanks and RegardsVishad AlekhSent from my BlackBerry 10 smartphone.From: Sam KSent: Monday 3 October 2016 9:50 AMTo: Jenkins UsersReply To: jenkinsci-users@googlegroups.comSubject: Re: Pipeline IssueHi Vishad   I am not too sure about the 1 and 3, but regarding 2, I've seen that happen.  No matter how many times you remove those @ folders, they come back.  I've left those alone and I've noticed that Jenkins will manage them accordingly.  They don't keep growing in number either.  I have run a pipeline job which has been executed about 200 times and I see like 5 or 6 of those @tmp folders.    I believe Jenkins uses them for keeping track of parallel threads.  They are usually empty or have very little in them.  So no need to worry about them. :) On Saturday, October 1, 2016 at 12:20:42 PM UTC-7, vishad alekh wrote:Hi All,Please assist me with below :-I have created a multipipeline job with Jenkinsfile. This job will search for Jenkinsfile in GIT repo and will make the job accordingly. In this file I have configured it on the some other node apart from the one where Jenkins is running.Doubts :-1- when this new

Re: Pipeline Issue

2016-10-03 Thread vishad alekh
  Hi Mark,Thanks for your reply.1- I have not configured anything for my master node and still it creates on master. So does that mean it will be running the same way on master node.3- actually my GIT branch structure is something like release/ABC. Now when a job is created with this name it gets a format like release@%2FABC. This format becomes very difficult to handle on Linux boxes. Hence I was wondering if there is anyway to change the name and keep it more easy to use.Thanks and Regards‎Vishad AlekhSent from my BlackBerry 10 smartphone.From: Mark WaiteSent: Monday 3 October 2016 5:29 PMTo: jenkinsci-users@googlegroups.comReply To: jenkinsci-users@googlegroups.comSubject: Re: Pipeline Issue1 - The master agent needs to identify which branches contain a Jenkinsfile and match the branch selection criteria you provided.  In order to do that, the master agent clones the repository and uses that clone for the work on the master agent3 - I've found no way to change the name of the job which is created.  Can you describe how you envision using that changed name, and how you would avoid job name collisions?Mark WaiteOn Mon, Oct 3, 2016 at 12:03 AM vishad alekh <vishadal...@gmail.com> wrote:  Hi Sam,Thanks for your reply. Can anyone please assist me with number 1 and number 3.Thanks and RegardsVishad AlekhSent from my BlackBerry 10 smartphone.From: Sam KSent: Monday 3 October 2016 9:50 AMTo: Jenkins UsersReply To: jenkinsci-users@googlegroups.comSubject: Re: Pipeline IssueHi Vishad   I am not too sure about the 1 and 3, but regarding 2, I've seen that happen.  No matter how many times you remove those @ folders, they come back.  I've left those alone and I've noticed that Jenkins will manage them accordingly.  They don't keep growing in number either.  I have run a pipeline job which has been executed about 200 times and I see like 5 or 6 of those @tmp folders.    I believe Jenkins uses them for keeping track of parallel threads.  They are usually empty or have very little in them.  So no need to worry about them. :) On Saturday, October 1, 2016 at 12:20:42 PM UTC-7, vishad alekh wrote:Hi All,Please assist me with below :-I have created a multipipeline job with Jenkinsfile. This job will search for Jenkinsfile in GIT repo and will make the job accordingly. In this file I have configured it on the some other node apart from the one where Jenkins is running.Doubts :-1- when this new job gets created, I can see a folder with the same name on master server as well. How come it's getting created on master node too.ideally I think it should only be in that node which is defined in Jenkinsfile. 2- It creates a folder with the name @2 or @temp. What are these? 3-how can we change the name of the job which automatically gets created from Jenkinsfile. By default it takes the name of the git branch where it finds the JenkinsFile. Thanks and RegardsVishad Alekh



-- 
You received this message because you are subscribed to a topic in the Google Groups "Jenkins Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jenkinsci-users/gkI8CFySI4c/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/64445e87-6f3c-4aaf-881e-6a2cfe6c6dcd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.




-- 
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 discu

Re: Pipeline Issue

2016-10-02 Thread vishad alekh
  Hi Sam,Thanks for your reply. Can anyone please assist me with number 1 and number 3.Thanks and RegardsVishad AlekhSent from my BlackBerry 10 smartphone.From: Sam KSent: Monday 3 October 2016 9:50 AMTo: Jenkins UsersReply To: jenkinsci-users@googlegroups.comSubject: Re: Pipeline IssueHi Vishad   I am not too sure about the 1 and 3, but regarding 2, I've seen that happen.  No matter how many times you remove those @ folders, they come back.  I've left those alone and I've noticed that Jenkins will manage them accordingly.  They don't keep growing in number either.  I have run a pipeline job which has been executed about 200 times and I see like 5 or 6 of those @tmp folders.    I believe Jenkins uses them for keeping track of parallel threads.  They are usually empty or have very little in them.  So no need to worry about them. :) On Saturday, October 1, 2016 at 12:20:42 PM UTC-7, vishad alekh wrote:Hi All,Please assist me with below :-I have created a multipipeline job with Jenkinsfile. This job will search for Jenkinsfile in GIT repo and will make the job accordingly. In this file I have configured it on the some other node apart from the one where Jenkins is running.Doubts :-1- when this new job gets created, I can see a folder with the same name on master server as well. How come it's getting created on master node too.ideally I think it should only be in that node which is defined in Jenkinsfile. 2- It creates a folder with the name @2 or @temp. What are these? 3-how can we change the name of the job which automatically gets created from Jenkinsfile. By default it takes the name of the git branch where it finds the JenkinsFile. Thanks and RegardsVishad Alekh



-- 
You received this message because you are subscribed to a topic in the Google Groups "Jenkins Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jenkinsci-users/gkI8CFySI4c/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/64445e87-6f3c-4aaf-881e-6a2cfe6c6dcd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.




-- 
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 discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/20161003060202.5910610.29917.25542%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Pipeline Issue

2016-10-01 Thread vishad alekh
Hi All,

Please assist me with below :-

I have created a multipipeline job with Jenkinsfile. This job will search for 
Jenkinsfile in GIT repo and will make the job accordingly. In this file I have 
configured it on the some other node apart from the one where Jenkins is 
running.

Doubts :-

1- when this new job gets created, I can see a folder with the same name on 
master server as well. How come it's getting created on master node too.ideally 
I think it should only be in that node which is defined in Jenkinsfile. 

2- It creates a folder with the name @2 or @temp. What are these? 

3-how can we change the name of the job which automatically gets created from 
Jenkinsfile. By default it takes the name of the git branch where it finds the 
JenkinsFile. 


Thanks and Regards
Vishad Alekh

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/03f7a69c-4a67-463c-b5af-da4f555afa6e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Pipeline Issue

2016-09-17 Thread vishad alekh
  Hi, The file name is correct. But still Jenkins is not able to create a new job on seeing Jenkinsfile.Rather,when I deleted the multipipeline job and created it again then I was able to get a job with the same name as the branch and things were working fine as per Jenkinsfile.But I want the case to be in such a way that whenever a code is checked in with Jenkinsfile it should create a job or update the same if already existing ‎.Kindly help.Thanks and RegardsVishad AlekhSent from my BlackBerry 10 smartphone.From: Baptiste MathusSent: Wednesday 31 August 2016 2:25 AMTo: jenkinsci-users@googlegroups.comReply To: jenkinsci-users@googlegroups.comSubject: Re: Jenkins Pipeline IssueWhat do indexing logs say?
Did you actually write Jenkinsfile or JenkinsFile as in your mail. If the latter, then it's normal, it should be Jenkinsfile.
Cheers
Le 23 août 2016 8:52 PM, "vishad alekh" <vishadal...@gmail.com> a écrit :Thanks for the reply Mathus.I have uploaded the JenkinsFile in the repo (GIT) . After running the job i am still not getting the desired result . No job is getting created for new branch .The job is just prunning stale remotes and getting remote branches . After that its showing success.Can someone please assist with this.Thanks and RegardsVishad AlekhOn Tuesday, August 23, 2016 at 5:16:55 AM UTC+5:30, Baptiste Mathus wrote:You want to have a look at the Pipeline Multibranch Plugin.
Define a Jenkinsfile in the repo with your build logic. Then each time you create a new branch it will be indexed and built if such a Jenkinsfile can be found.
Cheers
Le 22 août 2016 11:40 PM, "vishad alekh" <visha...@gmail.com> a écrit :Hi All,I am using jenkins version 2.11 . I want to use jenkins pipeline plugin feature. We have branches in GIT which are release specific. I want that if a new branch is created in GIT, then automatically a job should be created in jenkins which atleast can do a code checkout .Please guide me for the same.Thanks and RegardsVishad



-- 
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-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/4ed460a3-de32-43c3-b704-07371c165f72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.





-- 
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/6b2498af-c2fa-4f6c-958d-adc15b217de6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.




-- 
You received this message because you are subscribed to a topic in the Google Groups "Jenkins Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jenkinsci-users/VnqO5LUSu30/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/CANWgJS41khUypXiXsS27fRipMZ0OjgWFJk%2BBW326h8HGaYtcDQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.




-- 
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 discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/20160917093621.5980239.8008.24996%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Pipeline Issue

2016-08-23 Thread vishad alekh
Thanks for the reply Mathus.


I have uploaded the JenkinsFile in the repo (GIT) . After running the job i 
am still not getting the desired result . No job is getting created for new 
branch .

The job is just prunning stale remotes and getting remote branches . After that 
its showing success.

Can someone please assist with this.


Thanks and Regards
Vishad Alekh



On Tuesday, August 23, 2016 at 5:16:55 AM UTC+5:30, Baptiste Mathus wrote:
>
> You want to have a look at the Pipeline Multibranch Plugin.
>
> Define a Jenkinsfile in the repo with your build logic. Then each time you 
> create a new branch it will be indexed and built if such a Jenkinsfile can 
> be found.
>
> Cheers
>
> Le 22 août 2016 11:40 PM, "vishad alekh" > 
> a écrit :
>
>> Hi All,
>>
>> I am using jenkins version 2.11 . I want to use jenkins pipeline plugin 
>> feature. We have branches in GIT which are release specific. I want that if 
>> a new branch is created in GIT, then automatically a job should be created 
>> in jenkins which atleast can do a code checkout .
>> Please guide me for the same.
>>
>>
>> Thanks and Regards
>> Vishad
>>
>> -- 
>> 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-use...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/4ed460a3-de32-43c3-b704-07371c165f72%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/jenkinsci-users/4ed460a3-de32-43c3-b704-07371c165f72%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6b2498af-c2fa-4f6c-958d-adc15b217de6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins Pipeline Issue

2016-08-22 Thread vishad alekh
Hi All,

I am using jenkins version 2.11 . I want to use jenkins pipeline plugin 
feature. We have branches in GIT which are release specific. I want that if 
a new branch is created in GIT, then automatically a job should be created 
in jenkins which atleast can do a code checkout .
Please guide me for the same.


Thanks and Regards
Vishad

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/4ed460a3-de32-43c3-b704-07371c165f72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.