Re: Error following installation steps for Jenkins

2016-07-29 Thread Baptiste Mathus
I guess this is because centos 5 is pretty old and probably does not have
let's encrypt root certificates installed.
Even surprised you were able to find a JDK 7 (or 8, better BTW) on this.

BTW for a master you probably want to use a more recent platform, and use
an agent if you need to build on older flavours.

Cheers

Le 29 juil. 2016 7:39 PM, "Glenn Caccia"  a écrit :

> Actually resolved the issue.  I used wget to download the key locally and
> then was able to import.  When using wget, had to use the flag to not check
> certificate...
>
> ERROR: cannot verify jenkins-ci.org's certificate, issued by
> `/C=US/O=Let's Encrypt/CN=Let's Encrypt Authority X3':
>   Unable to locally verify the issuer's authority.
> ERROR: certificate common name `accounts.jenkins.io' doesn't match
> requested host name `jenkins-ci.org'.
> To connect to jenkins-ci.org insecurely, use `--no-check-certificate'.
>
> --
> 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/498bdbbd-a0f5-4eef-9d77-f945974f1438%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/CANWgJS4%2BkpCG1PPUKSV8thkLBmKZoKtD8nD26Sh4DDat5_Ru0Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Creating a plugin to show results beside all downstream jobs for each build without blocking.

2016-07-29 Thread Jeremiah Bunton
Hello!!

I would like to build a plugin that allows me to be able to click on upstream 
job builds and show the status of the downstream jobs the same way it is shown 
for the last build that ran.  So far the only way I have found is to have the 
upstream job block until all downstream jobs finish.  This is not favorable 
since it uses one executor to keep track of downstream jobs and I can’t afford 
to waste an executor since my queue is always huge.  

Two questions:

1) Is there such a plugin already?
2) Is this even feasible?

Thank you,

Jeremiah

-- 
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/A50DDF4C-520E-4377-A7B9-66AF60CF53F5%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Automate Jenkins install on Kubernetes

2016-07-29 Thread Warren Strange

Bumping this thread again

Does anyone have a good strategy for automating the install and 
configuration of Jenkins on K8s?  

On Monday, June 13, 2016 at 12:41:23 PM UTC-6, Warren Strange wrote:
>
>
>
> Does anyone have a good way to automate the installation of Jenkins on 
> Kubernetes, including 
> all of the plugins, job configuration, etc. 
>
> I have found quite a few k8s / Jenkins manifests - but they pretty much 
> assume that you will mount a PV for Jenkins home, and then 
> configure it manually. 
>
> The fabric8 folks have improved on this (
> https://github.com/fabric8io/jenkins-docker 
> )
>  
> - but it seems rather complex.  Perhaps an RFE? 
>
> Thinking out loud:  Perhaps a Jenkinsfile could declare the plugins that 
> it needs, and then have Jenkins install those on the fly?
>
>
>
>
>
>
>

-- 
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/09543cb4-bca3-45d8-9aac-761b936f2201%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is `concurrency: 1` on a stage in multibranch pipeline build supposed to apply to all branches for that build?

2016-07-29 Thread Greg Smith

Was watching the new release notes for some plugins, and happened to find 
this:

JENKINS-34547  
Converted concurrency setting to a job property, allowing it to be defined 
in a multibranch Jenkinsfile via the properties step.

It looks like it is now possible to set concurrency so that it does go 
across all branches -- though I'm not sure how to use it yet, seems very 
promising.

Cheers,
Greg


On Tuesday, July 26, 2016 at 9:15:57 PM UTC-4, David wrote:
>
> I never found a good solution, but I am using the lockable resources 
> plugin (
> https://wiki.jenkins-ci.org/display/JENKINS/Lockable+Resources+Plugin). I 
> didn't need to define each resource manually:
>
> When the lock step is used in a Pipeline, if the resource to be locked 
>> isn't already defined in the Jenkins global configuration, it'll be set up 
>> automatically.
>
>
> On Tuesday, July 26, 2016 at 7:49:21 PM UTC-4, Greg Smith wrote:
>>
>> Hi David,
>>
>> Did you ever find a nice solution to this problem?  I would also like to 
>> lock builds for projects with multiple branches / PRs, but don't want to 
>> mess with using lockable resources (which seems to be the only solution 
>> right now that works with pipeline code, but it requires you define a 
>> resource for each project)
>>
>> Cheers,
>> Greg
>>
>>
>> On Thursday, May 12, 2016 at 4:23:50 PM UTC-4, David wrote:
>>>
>>> I have a Jenkinsfile in my repo, and one of the stages uses resources 
>>> shared across every branch, but I need to limit it to only one build at a 
>>> time. It seems that if two branches are being built simultaneously, they 
>>> don't respect the concurrency parameter and end up using the shared 
>>> resource at the same time.
>>>
>>> I'd like the branch builds to wait until the other branch is out of that 
>>> shared stage before entering, which is what i thought the concurrency 
>>> parameter would do.
>>>
>>> stage name: 'Source code checkout'
>>> node {
>>> checkout scm
>>> }
>>>
>>> // Tests reuse the same resources
>>> // I thought setting concurrency to 1 would avoid multiple branch builds 
>>> stepping on each other
>>> stage name: 'Test', concurrency: 1
>>> node {
>>> // This doesn't seem to be limited to one branch build at a time
>>> // How can I achieve that?
>>> }
>>>
>>>
>>>

-- 
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/60360a11-eff1-4420-98e0-c293d0d1af59%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error following installation steps for Jenkins

2016-07-29 Thread Glenn Caccia
Actually resolved the issue.  I used wget to download the key locally and 
then was able to import.  When using wget, had to use the flag to not check 
certificate...

ERROR: cannot verify jenkins-ci.org's certificate, issued by `/C=US/O=Let's 
Encrypt/CN=Let's Encrypt Authority X3':
  Unable to locally verify the issuer's authority.
ERROR: certificate common name `accounts.jenkins.io' doesn't match 
requested host name `jenkins-ci.org'.
To connect to jenkins-ci.org insecurely, use `--no-check-certificate'.

-- 
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/498bdbbd-a0f5-4eef-9d77-f945974f1438%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Groovy script other script tools functions

2016-07-29 Thread jerome
Seem like the pipeline output cannot be parsed by the console log parser 
(he don't see them inside the node, some flushing or redirection is not 
properly done).

so I'm move back to Python and did a simple script invoke with batch (this 
work):
bat "\"${bcad.python_2_exe}\" 
\"${env.JENKINS_HOME}\\custom_scripts\\FilesInspection.py\" -e -s. 
-f\".*\\.vcxproj\$\" -g -a\"external\" -c\"

Error following installation steps for Jenkins

2016-07-29 Thread Glenn Caccia
I'm trying to install 2.7.1 LTS on a CentOS 5.6 box.  I'm following the 
instructions for "*Installing Jenkins on Red Hat distributions* 
",
 
which states the following...

sudo wget -O /etc/yum.repos.d/jenkins.repo 
*http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo* 

- sudo rpm --import *https://jenkins-ci.org/redhat/jenkins-ci.org.key* 

- sudo yum install jenkins

The first command works fine, but the second command to import fails...

error: https://jenkins-ci.org/redhat/jenkins-ci.org.key: import read 
failed(-1).

Any thoughts on what I need to do to fix this?


-- 
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/10d56312-2702-43c0-84e5-9adb1c914ea2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[pipeline] After upgrading to Jenkins 2, can't upgrade the Pipeline plugin from 1.14 to 2.x

2016-07-29 Thread Phil Viana
I upgraded my Jenkins instance from 1.x to 2.x.

The Pipeline plug-in stayed at 1.14, whilst the 2.2 version is available.

I tried uninstalling the Pipeline plug-in and all the dependencies I could.
However, what I have now is a list of pipeline-related plugins on 1.14 that
are greyed out and therefore can NOT be uninstalled (see screenshot)

[image: Selection_436.png]

I couldn't find a good way to work out these dependencies and figure out
what needs to be uninstalled before I can upgrade the plugin to 2.2. Any
thoughts?

-- 
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/CAGnEym1wT0Pkou1WCQuWBpB1rY2f8T%3DMRg6AWcF8n3T-5r1igQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Job Import Plugin

2016-07-29 Thread vivek . dhrhel


Hi Guys,

I am using Gearman to run the jobs to multiple jenkins master but both 
dashboards are different since jobs are different on both of them . I used 
jenkins-job-builder to keep them in sync but it's tough to generate yaml 
for complex jobs( specially for newcomers ) .

I used jobs import plugin which is awesome for importing jobs .

*How can i sync the jobs between both jenkins instances using job import 
plugin API ?*
*For an API, could you please assist me with some set of examples ?*

I will use those APIs on both jenkins instances & use cron jobs to pull & 
push jobs on both the servers to keep both of them in sync probably every 2 
or 3 minutes .

Thanks in advance for your help !

-- 
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/bf089861-e432-4f76-8c24-88ab79b7023a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Not loading node configuration page

2016-07-29 Thread Vijay Mali
I am trying to access node configuration page for configuring or edit the 
configuration of existing node but the page is not loading at all.
Can anyone help on this. 
Thanks.

-- 
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/b1bc2d72-e03a-436d-a64c-c158c7b0ba37%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins v2.15 with Git plugin v2.5.2

2016-07-29 Thread Antonio Hernandez
Hi mark
i've got the same thing, the parameters doesn't have apparently nothing to 
be with that issue
Thanks anyway



El viernes, 29 de julio de 2016, 14:18:46 (UTC+2), Mark Waite escribió:
>
> Have you considered copying that job into two jobs, one that builds the 
> DEV branch, and one that builds the parameterized branch?
>
> On Friday, July 29, 2016 at 12:58:24 AM UTC-6, Antonio Hernandez wrote:
>>
>> Hi there,
>> I'm living a nightmare because Git plugin behaviour. I have a proyect 
>> with mutiple SCMs with the following configuration:
>>
>>
>> 
>>
>>
>> so, it's setted to build  a war in a subdirectory called "war" getting 
>> the source code as default from DEV or from a parameter "BRANCH" but i'm 
>> having this instead :
>>
>>
>>
>>
>> 
>>
>>
>> All of them have the same parameter "DEV" but it can see the first one, 
>> by it's own, its building another different branch i setted.
>>
>> Also, there is the console output:
>>
>>
>>
>> 
>>
>>
>> I'm desperate, any help would be helpful
>>
>>
>> Thanks in advance
>>
>>
>>
>>

-- 
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/859b777f-7a76-4544-94a3-755ede3f6747%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins v2.15 with Git plugin v2.5.2

2016-07-29 Thread Mark Waite
Have you considered copying that job into two jobs, one that builds the DEV 
branch, and one that builds the parameterized branch?

On Friday, July 29, 2016 at 12:58:24 AM UTC-6, Antonio Hernandez wrote:
>
> Hi there,
> I'm living a nightmare because Git plugin behaviour. I have a proyect with 
> mutiple SCMs with the following configuration:
>
>
> 
>
>
> so, it's setted to build  a war in a subdirectory called "war" getting the 
> source code as default from DEV or from a parameter "BRANCH" but i'm having 
> this instead :
>
>
>
>
> 
>
>
> All of them have the same parameter "DEV" but it can see the first one, by 
> it's own, its building another different branch i setted.
>
> Also, there is the console output:
>
>
>
> 
>
>
> I'm desperate, any help would be helpful
>
>
> Thanks in advance
>
>
>
>

-- 
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/1decd2e5-c54f-4dcb-9757-7e5c31c889f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is there any Jenkins plugin available to get all the active branches in a Bitbucket cloud repository?

2016-07-29 Thread Mark Waite
I really like the "multi-branch" plugins ("Multi-branch project plugin" -
https://wiki.jenkins-ci.org/display/JENKINS/Multi-Branch+Project+Plugin and
"Pipeline Multibranch Plugin" -
https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Multibranch+Plugin and
GitHub Organization Folders) because they automatically create, run, and
destroy jobs for each branch based on selection criteria.

The Pipeline Multibranch Plugin uses an inclusion list and an exclusion
list to create a job for each branch in a repository that contains a
"Jenkinsfile" in its root directory.  The build is then executed based on
the definition in that Jenkinsfile.  Examples of Jenkinsfile contents are
available from various pipeline example repositories.

The Multi-branch project plugin uses an inclusion list and an exclusion
list to create a job for each branch in a repository, then runs the user
defined build step (ant, maven, gradle, Xshell, shell, batch, etc.).

The GitHub Organization Folders plugin probably won't work in your case,
since you're using BitBucket, but it takes it one step further.  It
monitors an organization on GitHub, selects repositories based on an
inclusion list, then creates a folder for each repository, and jobs for
each matching branch in each repository.  It also seems to automatically
configure a pull request builder for each of the repositories, so that pull
requests are automatically evaluated, with the results of the pull request
uploaded to GitHub.

Mark Waite

On Fri, Jul 29, 2016 at 5:07 AM Vadivel Natarajan 
wrote:

> Hi All,
>
>
>
> I started to work with Jenkins for a week. I have referred the Jenkins
> plugins and implemented a Jenkins to build the source. Now, I need to get
> all the active branches in a BitBucket cloud repository from a Jenkins
> job(automatically) and build the sources for the particular branch alone if
> commits done on the same branch.
>
>
>
> Note: If any new branch created from the Bitbucket cloud repository, then
> that should also be detected and start the Jenkins job if commit done for
> the branch source.
>
>
>
> Could anyone please guide me on this to get all the active branches in a
> Bitbucket cloud repository using Jenkins?  Is there any plugin available
> for this?
>
>
>
> I have also referred the below links. But, this link specified to trigger
> the jenkins job for the particular branch  and we need to manually include
> the branch name in jenkins job.
>
>
>
>1.
>
> http://stackoverflow.com/questions/20713157/is-it-possible-to-trigger-jenkins-from-one-specific-branch-only
>2.
>
> http://stackoverflow.com/questions/19003098/how-can-i-make-jenkins-only-build-feature-branches-if-they-have-changed-when-tri
>3.
>
> http://stackoverflow.com/questions/27388145/bitbucketjenkins-trigger-build-only-when-specific-branch-is-changed
>4.
>
> http://stackoverflow.com/questions/11231064/how-do-i-get-jenkins-to-build-on-push-to-a-bitbucket-git-repository
>
>
>
> Stackoverflow query:
> http://stackoverflow.com/questions/38657171/is-there-any-jenkins-plugin-available-to-get-all-the-active-branches-in-a-bitbuc
>
>
>
> Thanks.
>
> --
> 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/CAByDd%3DfO0TarwMjHUZjeHWoHgFetRQ3LOKLkBD5N%2BG%2BU0J74KQ%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/CAO49JtFAenqusNwtrG5Yjk3i-JXffyJMAsNU2CDCFhCBv8412Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Is there any Jenkins plugin available to get all the active branches in a Bitbucket cloud repository?

2016-07-29 Thread Vadivel Natarajan
Hi All,



I started to work with Jenkins for a week. I have referred the Jenkins
plugins and implemented a Jenkins to build the source. Now, I need to get
all the active branches in a BitBucket cloud repository from a Jenkins
job(automatically) and build the sources for the particular branch alone if
commits done on the same branch.



Note: If any new branch created from the Bitbucket cloud repository, then
that should also be detected and start the Jenkins job if commit done for
the branch source.



Could anyone please guide me on this to get all the active branches in a
Bitbucket cloud repository using Jenkins?  Is there any plugin available
for this?



I have also referred the below links. But, this link specified to trigger
the jenkins job for the particular branch  and we need to manually include
the branch name in jenkins job.



   1.
   
http://stackoverflow.com/questions/20713157/is-it-possible-to-trigger-jenkins-from-one-specific-branch-only
   2.
   
http://stackoverflow.com/questions/19003098/how-can-i-make-jenkins-only-build-feature-branches-if-they-have-changed-when-tri
   3.
   
http://stackoverflow.com/questions/27388145/bitbucketjenkins-trigger-build-only-when-specific-branch-is-changed
   4.
   
http://stackoverflow.com/questions/11231064/how-do-i-get-jenkins-to-build-on-push-to-a-bitbucket-git-repository



Stackoverflow query:
http://stackoverflow.com/questions/38657171/is-there-any-jenkins-plugin-available-to-get-all-the-active-branches-in-a-bitbuc



Thanks.

-- 
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/CAByDd%3DfO0TarwMjHUZjeHWoHgFetRQ3LOKLkBD5N%2BG%2BU0J74KQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to get Jenkins 2.0 multi branch pipeline and bitbucket 4.8.1 web hook working?

2016-07-29 Thread Jeroen Reijn
Hi Otavio,

Yes it tried that, but it did not seem to work or i misconfured something.
I think I found a solution with pending PR in the bitbucket source plugin.

Jeroen

Op do 28 jul. 2016 om 23:32 schreef Otávio Augusto Soares <
otavi...@gmail.com>

> Have you tried using the "Trigger builds remotely (e.g., from scripts)",
> setting a token and then add a webhooh to
> http://JENKINS_URL/job/JOB_NAME/build?token=TOKEN
>
> Unfortunately it's not working for me because I've secured my jenkins and
> get 403. But you can try.
>
>
> Em sexta-feira, 22 de julho de 2016 08:52:45 UTC-3, Jeroen Reijn escreveu:
>>
>> Hi all,
>>
>> I'm trying to get my multibranch workflow job to trigger based on a
>> change in bitbucket server (previously known as stash).
>>
>> I've read most of the docs on the several plugins, but I can't seem to
>> get the combination to work.
>>
>> What I've done now is configure my project with:
>>
>> Branch sources -> Bitbucket
>> Build Configuration -> Mode -> From Jenkinsfile
>> Bitbucket Server URL -> My custom URL
>> And I've setup the credentials.
>>
>> That part seems to work fine, so if I manually trigger the build it runs
>> fine and does the branch indexing.
>>
>> On the bitbucket side, I've tried to use the following plugins:
>>
>> 1. Bitbucket Server Webhook to Jenkins
>> I tried this with specificing the jenkins url, but it reports back with:
>>
>> Error: Jenkins response: No git jobs using repository:
>> http://host:7990/scm/hv/project.git and branches: master No Git
>> consumers using SCM API plugin for: http://host:7990/scm/hv/project.git
>>
>> I guess this comes from the fact it's a pipeline job that uses a branches
>> sources instead of git in a 'normal' maven base project with git as source.
>>
>>
>> 2. Post-Receive WebHooks
>>
>> If I use this plugin with the URL http://jenkinshost:8080/bitbucket-hook/
>> it complaints with:
>> WARNING: Error while serving http://jenkinshost:8080/bitbucket-hook/
>>
>> net.sf.json.JSONException: JSONObject["user"] not found.
>>
>> So it seems the request body to the bitbucket hook is not what the server
>> expects. I've found some github issues, but I can't seem to figure out how
>> I can make this work.
>>
>> I assume I'm not the only one trying this?
>>
>> Any ideas?
>>
>> Regards,
>>
>> Jeroen
>>
>>
>> --
> 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/GjvZ6Dj8pRc/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/94550ff0-a8fe-493e-b442-4fd91213dfa9%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/CAHiEoLH6B%3DSGjWYke3gRioukLBiOgge2WUieYFRAT8mA9%3DN9pA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins v2.15 with Git plugin v2.5.2

2016-07-29 Thread Antonio Hernandez
Hi there,
I'm living a nightmare because Git plugin behaviour. I have a proyect with 
mutiple SCMs with the following configuration:




so, it's setted to build  a war in a subdirectory called "war" getting the 
source code as default from DEV or from a parameter "BRANCH" but i'm having 
this instead :






All of them have the same parameter "DEV" but it can see the first one, by 
it's own, its building another different branch i setted.

Also, there is the console output:





I'm desperate, any help would be helpful


Thanks in advance



-- 
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/3661dc05-6493-4656-892a-00586923b1a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.