Re: Stage View in Parallel Exectution

2017-04-28 Thread James Dumay
Parallel visualization in stage view is not possible today. Read https://issues.jenkins-ci.org/browse/JENKINS-33185 for more information. You can however visualize parallel stages using Blue Ocean https://jenkins.io/projects/blueocean/ On Friday, April 28, 2017 at 5:42:40 AM UTC+10, vishad

Re: Disabling Jenkins' new version message

2017-04-28 Thread Stephen Connolly
I find upgrading and fixing the security issues disables the warning ;-) On Fri 28 Apr 2017 at 13:22, Sébastien Hinderer wrote: > Dear all, > > Is there a way to disable the message about newer Jenkins versions and > also the security-related warnings? > > Thanks! >

AD plugin and/or Matrix-based security

2017-04-28 Thread Osborn, Tammy (DNR)
We are using the AD plugin and granting permissions based on AD groups. Users do not see their groups appear on the user page unless their AD group is granted the Overall Administer permission. That doesn't seem correct. For example: Jane is in AD-group-Developers. Jane logs in and goes to her

Dissabling auto upgrade of jenkins version

2017-04-28 Thread venkatesh guttal
Hi, In our case, jenkins updating/upgrading automatically whenever new version comes. Any idea, How do i Dissable it? Regards VG -- 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

Build queue question

2017-04-28 Thread Michael Rose
I'm somewhat new to using Jenkins, but my understanding is that the build queue is supposed to be limited to one queued build per job. I'm seeing a build queue with multiple builds for the same job:

Merge to Master not kicking Open PRs to also build

2017-04-28 Thread Jeffrey
Good Afternoon Jenkins-Land Running into a weird issue in version Jenkins 2.53 and 2.57 (Latest plugins). Old Version: (I believe 2.45) (Git / SCM plugins previous to version 2.0) Jenkins Multibranch Pipeline, Freestyle --> Jenkinsfile from ORG folder 1. We have 5 open PRs. 2. We

file-operations-plugin: silent failure downloading from Nexus

2017-04-28 Thread James Green
This plugin works fine downloading binaries from various web sites, but give it a file to download from Nexus and it fails instantly with no error: [Pipeline] step File Download Operation: Started downloading file from https://repository.jboss.org/asm/1.5.3/lib/asm-attrs.jar [Pipeline] }

Re: Request for simple pipeline example to do checkout, run shell script, email result

2017-04-28 Thread Terry Lacy
Hi David, Here's a real-world example from my server. It checks out from git, runs a maven build and deploys to a platform specified by a jenkins job parameter. Details obscured to protect the incompetent :). Hope this helps get you started. I found getting started with pipeline a little

Colombian Jenkins users we need your help

2017-04-28 Thread R. Tyler Croy
Kohsuke posted some details in this blog post: https://jenkins.io/blog/2017/04/27/colombia/ The gist of the issue is that somebody is trying to use/register the Jenkins trademark in Colombia. If you're one of the many Colombian Jenkins users, please take a moment to read the blog post. -

[EVENT]: Jenkins World 2017 - Today is last day for super early bird price

2017-04-28 Thread Alyssa Tong
Hello, For those planning to attend Jenkins World - a quick note that today (11:59PM PST) is the last day for super early pricing. Feel free to use *JWATONG* for 20% discount. Have a great weekend. alyssa -- You received this message because you are

Pipeline build expects multiple values for a parameter

2017-04-28 Thread Ramanathan Muthaiah
Hello, Am using parameters( [ . . . ] ) inside the pipeline script to define the values for the various parameters. These params are used while invoking packer tool. properties([ parameters([ string(name: 'region', defaultValue: 'us-west-2', description : ''),

Re: SAML Authentication - also need normal http auth

2017-04-28 Thread Ivan Fernandez Calvo
yep, it is not possible to retrieve the groups from the IdP because the API token authentication it is a local authentication with a non password key so when you login you only have the permissions that you grant directly to the user more less because it depends a little of your permissions

User-defined variables?

2017-04-28 Thread Sébastien Hinderer
Dear all, On our Jenkins instance, we have a job to let developers test their modifications before they get merged. The build is parameterized by the URL of the developer's Git repository and the name of the branch to test. I would like to let each developer define the URL of his/her repository

Disabling Jenkins' new version message

2017-04-28 Thread Sébastien Hinderer
Dear all, Is there a way to disable the message about newer Jenkins versions and also the security-related warnings? Thanks! Sébastien. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails

Re: test for variables

2017-04-28 Thread kenneth johansson
On 2017-04-28 13:38, Kenneth Johansson wrote: I want to test if a property on a job exist att all. and then do something depening on if it true or false. if the property exist there is no issue testing if its true or false but I do not want to force the job to have to create the property so I

test for variables

2017-04-28 Thread Kenneth Johansson
I want to test if a property on a job exist att all. and then do something depening on if it true or false. if the property exist there is no issue testing if its true or false but I do not want to force the job to have to create the property so I want to test if the variable exist and that

Re: SAML Authentication - also need normal http auth

2017-04-28 Thread James Masson
To close the loop on this... It looks like the API keys for SAML generated users are persisted /somewhere/ in jenkins. However, the permissions associated with the API key do not seem to get persisted - unless the user is directly in the permissions matrix, and doesn't get permissions as

Re: groovy commands and description.

2017-04-28 Thread Kenneth Johansson
On 2017-04-27 17:52, Mark Waite wrote: On Thu, Apr 27, 2017 at 9:36 AM Kenneth Johansson > wrote: On 2017-04-27 17:22, Mark Waite wrote: Refer to

RE: Request for simple pipeline example to do checkout, run shell script, email result

2017-04-28 Thread David Aldrich
Hi David Thanks for your reply. > What you should do is focus on each one of these tasks separately. I have difficulty with that approach. I agree that it is possible to understand individual steps by looking at existing examples or using the snippet generator, but I need help in putting