Show List of downstream jobs

2016-11-25 Thread Jovan Jevric
Hi @ all, I'm currently using Jenkins v1.609. I was wondering if there is actually a plugin which does show all the downstream-jobs linked in main job. This feature would be very useful as one is able to check results which is interested in(e.g. jobA). Otherwise one is supposed to click all th

Re: By installing jenkins a lot of plugins can't be installed

2016-11-25 Thread Daniel Beck
> On 25.11.2016, at 08:34, jenkins.buildserver...@gmail.com wrote: > > Thanks for the reply, but I tries it at least 5 or 6 times, by uninstalling > and reinstalling it, and the result was always the same: Does the Jenkins plugin manager usually work? Or is this instance of Jenkins 'offline' a

i've to create Jenkins Page that would check the server status by SOAP UI and if server is accessible then green status would return and if server not accessible then red status updated in desire colu

2016-11-25 Thread Gaganpreet Singh
I've to create Jenkins Page that would check the server status by SOAP UI and if server is accessible then green status would return and if server not accessible then red status updated in desire column. *problem description* 1) We have 10 server on which latest build installed on daily basics

Jenkins Pipeline plugin seemingly skipping commands

2016-11-25 Thread lionel . pectol
I have a Jenkins Pipeline plugin script that looks like this: stage("check out project") { shell "pwd" echo "test 1" git credentialsId: "user", url: "http://url/project"; echo "test 2" shell "git --version" echo "test 3" } The outp

Re: By installing jenkins a lot of plugins can't be installed

2016-11-25 Thread jenkins . buildserver . 37
It is a virtualbox, where I want to test jenkins 2, it is a new installation, and some plugins can be downloaded and other can't be, but I think that the problem is our firewall, which blocks those files, I'm try to "communicate" with our IT people, but it is like to speak with chimpanzees, som

I want to use my Mac machine as a master and the windows machine as Slaves

2016-11-25 Thread bharat joshi
I want to use my Mac machine as a master and the windows machine as Slaves I tired various different options for the same , as posted on internet but unable to do so Can you please let me know the process to do the same -- You received this message because you are subscribed to the Google

Restricting credentials the correct way

2016-11-25 Thread Daniel P.
Hi everyone, I want to restrict a Jenkins (global, for testing purposes) credential. The URL I want to use this credential for is something like this: https://somewhere.someDomain.top/RepositoryName/repository.git How do I restrict usage of the credential? I created a domain and have tried vari

Re: Pipeline build crashes depending on who started it?

2016-11-25 Thread jerome
Just a quick question just in case, does you other user log on the machine and the Jenkins is start with the other user space? Windows have a stupid behavior of limiting the number of user that can be loggon at the same time. Probably not the case, but just to make sure, run Jenkins into a serv

Jenkins master in Docker optimal setup

2016-11-25 Thread Eddard
Hello, the software engineering team i work in is putting up a new ci/cd platform based on jenkins which will orchestrate the continuous delivery pipeline for more than 50 micro-services in a near future. We already have 10 of them being built and deployed through that platform. we have come t

Re: Jenkins Pipeline plugin seemingly skipping commands

2016-11-25 Thread jerome
They probably are all executed, just the output is not redirect (yeah IO pipe into pipeline are not so funny so far). You can use the redirect stdout *The good* println(shell(['returnStdout': true, 'script': "git --version" ])); *The bad* This doesn't split std::out and std::cerr either, so you

Re: Pipeline build crashes depending on who started it?

2016-11-25 Thread Jonathan Hodgson
I'm not quite sure what you mean. The other user logs on to jenkins on the server (or triggers a build with his name and password in the url, same thing in effect), but the slave is started by me and runs in my user space (which has admin priviledges).. or so I thought, the fact that things fai

Upgrade problems from 1.651.3 to 2.19.3

2016-11-25 Thread Anders Persson
After the upgrade some plugins does not load. I get this message: There are dependency errors loading some plugins: - Pipeline Graph Analysis Plugin v1.2 - Pipeline: Groovy v2.2 failed to load. Fix this plugin first. - Pipeline v2.2 - Pipeline: Supporting APIs v2.1 failed to

Re: Restricting credentials the correct way

2016-11-25 Thread Stephen Connolly
First off, I suspect the git plugin is not building the domain requirements correctly. Second, domains are not a security measure, rather they are a usability feature. The idea being to remove from the drop down credentials we know are not relevant... this is why when there is nothing to scope Cre

Re: Upgrade problems from 1.651.3 to 2.19.3

2016-11-25 Thread Daniel Beck
Check the Jenkins log for more detailed error messages. They'll give you an idea what causes all of these plugins to fail to load. Often it's a cascading effect due to one or two broken/missing plugins. I'm curious, how is this even possible? Do you manually manage your plugins/ directory? >

nginx reverse proxy issue Jenkins container

2016-11-25 Thread jude m
Hello All, I am running jenkins in a container and nginx in another container. In the manage jenkins page I am getting a reverse proxy error.. Can someone please help me with the right nginx configuration? Thanks, - J -- You received this message because you are subscribed to the Google Groups

Re: nginx reverse proxy issue Jenkins container

2016-11-25 Thread Daniel Beck
> On 25.11.2016, at 20:32, jude m wrote: > > Can someone please help me with the right nginx configuration? https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+behind+an+NGinX+reverse+proxy -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To

Re: global shared library overrides folder shared library?

2016-11-25 Thread Torsten Reinhard
After some tests I found, that scripts from the internal shared library were choosen. This behaviour cannot be overriden. created an improvement issue for that: https://issues.jenkins-ci.org/browse/JENKINS-40046 => would be helpful to disable the internal repo - and/or to improve the logs so it

How to generate "credentialsId" for stash notifier using principal and password

2016-11-25 Thread David Karr
I'm using Bitbucket server and Jenkins. I've defined a pipeline job that will be spawned from bitbucket when commits are pushed to a branch, either from the main webhook or a pull request notification. The pipeline job has to use the stash notifier plugin to notify bitbucket/stash of the resul

Re: How to generate "credentialsId" for stash notifier using principal and password

2016-11-25 Thread David Karr
Never mind. I didn't notice the "Credentials Parameter" until now. It looks like that will be all that I need. However, now I'm wondering about another place where I had to hardcode a hash into my pipeline script, being a file id for a Maven settings.xml file. I'll pursue that separately. On

Pipeline manual step display

2016-11-25 Thread Guy Knights
I've started using the pipeline plugin to automate our build/deploy process and it's working well so far. The one issue I have is that when the job is waiting for manual input from a user before doing the final (deploy) stage, there is almost no feedback in the Jenkins console to indicate this.

Why isn't there a "Managed File Reference" parameter?

2016-11-25 Thread David Karr
I really don't like how I have to provide the Maven "settings.xml" file to my build job. I know I can override the default GUID value, but the whole mechanism just seems odd. What I would LIKE to see is exactly how a "Credential Parameter" works. In the job configuration, I just specify the p

Re: Upgrade problems from 1.651.3 to 2.19.3

2016-11-25 Thread Victor Martinez
I had a kind of similar issues when I upgraded a few instances a few months ago, basically just upgrading those versions from the latest 1.X LTS to 2.7.3 , If I recall correctly. How did I fix it? I ordered those dependencies and installing them, a bit tedious but it worked fine. I use Puppet t

Re: I want to use my Mac machine as a master and the windows machine as Slaves

2016-11-25 Thread Victor Martinez
Master installation: - https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins - https://github.com/jenkinsci/docker/blob/master/README.md Slaves: - https://wiki.jenkins-ci.org/display/JENKINS/Distributed+builds#Distributedbuilds-Differentwaysofstartingslaveagents Further readings: - htt

Re: Upgrade problems from 1.651.3 to 2.19.3

2016-11-25 Thread Daniel Beck
> On 26.11.2016, at 00:05, Victor Martinez > wrote: > > unfortunately Jenkins plugins are a bit evil as their dependencies are not > updated accordingly when using any Configuration Management tool Good point. I think it depends on how these tools implement plugin installation. IIRC the CLI