Jenkins Powershell Invoke-Command with Environment Variables

2016-06-01 Thread Gavin Armitage (AU)
Hi All, Busy working on a poc on Jenkins, so really new. So my question is as follows, 1. Running a "master" Powershell script to open a session and using invoke-command with the -File switch including the session $cred = New-Object System.Management.Automation.PSCredential -ArgumentList

Re: Git Client Plugin wiki page missing data?

2016-06-01 Thread Christopher Orr
Hi there, > On 01 Jun 2016, at 18:53, Dunnigan, Terrence J > wrote: > Does anyone know why the Git Client Plugin wiki page is missing most of its > data? > > Both of these URLs appear to point to the same page, and both appear to be > missing everything save

Re: pipeline global library no longer works on latest builds on Windows

2016-06-01 Thread Craig Rodrigues
Hi, My advice will differ from some of the advice on this list, but I would advise you to find a way to accomplish your goal without using the pipeline global library mechanism. It is really weird, and as you have found, hard to debug when it doesn't work. My advice is for you to try to find a

Re: pipeline global library no longer works on latest builds on Windows

2016-06-01 Thread tomwilson001 . us
Currently, I only call one variable/function under the vars directory. If the pipeline global library mechanism is so unstable, is there anyway I can call the function but under a different location without changing the Jenkinsfile? After I add the Jenkinsfile to the trunk of my project, it

Scheduled infrastructure maintenance window June 3 00:00 UTC

2016-06-01 Thread R. Tyler Croy
Consider this notice that there will be a scheduled maintenance window June 3rd 00:00 UTC or June 2nd 16:00 PDT for project infrastructure. The work is tracked in this ticket (https://issues.jenkins-ci.org/browse/INFRA-731) and should last between 1-2 hours. Please bear with any service

Re: Integrating promoted-builds DSL to a job-dsl-gradle-example project

2016-06-01 Thread François Genois
Ok, I'm pretty much in the same situation over here. Alright, I'm looking forward your advancement on this issue; I'll keep you updated if I find anything. Thanks again! - Frank On Wed, Jun 1, 2016 at 3:40 PM Thomas Zoratto wrote: > Right now I can’t see a way to do

Migrate Build Flow to Pipeline

2016-06-01 Thread AJ Ferrigno
Hello, I am working towards migrating our Build Flow DSL to Pipelines. I would like to create some sort of migration document to help other people, since I can't seem to find a straight-forward document anywhere quite yet. I have figured most things out thanks to documentation and

Re: Integrating promoted-builds DSL to a job-dsl-gradle-example project

2016-06-01 Thread Thomas Zoratto
Right now I can’t see a way to do this but my knowledge on this topic is very limited. I also have to work on it soon so I’ll let you know if I find a way (and if you still don’t have the answer). Please share your progress, if any Good luck ! Thomas > Le 1 juin 2016 à 20:35, François

Re: Access artifacts of upstream project in project chain

2016-06-01 Thread felix schwitzer
Copy artifact has an option "which build" and one is something like "upstream project that triggered the build" Hope this is what you are looking for On 2016-05-21 10:44, Tom Deseyn wrote: Yes, that is what I use, but I don't know how to pass it the upstream build number, hence my

Git Parameter 0.5.2-SNAPSHOT build errors

2016-06-01 Thread Michael Giroux
Just pulled latest source for Git Parameter plugin from github, and have 4 java errors due to undefined java.nio.file package references. java.nio.file is a new package in JDK 1.7. The effective pom for Git Parameter 0.5.2-SNAPSHOT is resolving source and target for the maven-compiler-plugin

Re: Integrating promoted-builds DSL to a job-dsl-gradle-example project

2016-06-01 Thread François Genois
Hello Thomas, Thank you very much for your answer. The promoted builds plugin is indeed a extension point. I added the following line to my dependencies "testCompile 'org.jenkins-ci.plugins:promoted-builds:2.27@jar'" and my 'gradlew test' command now succeeds. I just tried applying the same

Job config updated by Git Parameter plugin

2016-06-01 Thread Michael Giroux
Jenkins version: 1.609.3 Git Parameter plugin: 0.4 I'm trying to review job configuration history, but I'm seeing several configuration changes where the only change is the entry in the GitParameterDefinition node. I know that nobody has changed the entry manually because it does not appear

Re: Jenkins JIRA account access

2016-06-01 Thread Robert Simon
Thanks a lot for the quick resolution of this problem. I got access to my account. Robert Am Mittwoch, 1. Juni 2016 10:29:34 UTC-7 schrieb R Tyler Croy: > > (replies inline) > > On Wed, 01 Jun 2016, Robert Simon wrote: > > > Hi, > > > > my account (robsimon) for the Jenkins JIRA > >

Re: a new release of Gitlab Merge Request Builder Plugin ?

2016-06-01 Thread Owen B. Mehegan
I'm one of the maintainers of the GitLab plugin (https://github.com/jenkinsci/gitlab-plugin). It has recently undergone a major rewrite, and a group of us are continuing to actively develop it, having taken over from the original author. The GitLab MR Builder plugin is not actively maintained;

Re: What I miss with Pipeline: Console output from each node

2016-06-01 Thread Andrew Bayer
Yeah, we still need parallel execution split out in the visualization and log view... A. On Wed, Jun 1, 2016 at 10:31 AM, Patrick Wolf wrote: > Yes, as Craig mentioned this is partly solved using Stage View but the log > view should be much more informative and readable

Re: What I miss with Pipeline: Console output from each node

2016-06-01 Thread Patrick Wolf
Yes, as Craig mentioned this is partly solved using Stage View but the log view should be much more informative and readable after https://issues.jenkins-ci.org/browse/JENKINS-26107 is finished. On Wed, Jun 1, 2016 at 10:12 AM, Craig Rodrigues wrote: > Hi, > > Did you try

Re: Email a build notification to the BitBucket user who pushed a branch

2016-06-01 Thread Slide
Ok, I understand the problem now. The list of authors is pulled from the change sets for the build. You could create your own recipient provider plugin, it is an extension point. On Wed, Jun 1, 2016 at 8:50 AM Mike Lehan wrote: > Sadly not; the developers list will email

Re: Jenkins JIRA account access

2016-06-01 Thread R. Tyler Croy
(replies inline) On Wed, 01 Jun 2016, Robert Simon wrote: > Hi, > > my account (robsimon) for the Jenkins JIRA > (https://issues.jenkins-ci.org/secure/Dashboard.jspa) stopped working. I > tried to reset the password however it appears that I forgot to update my > email address so I cannot

Jenkins JIRA account access

2016-06-01 Thread Robert Simon
Hi, my account (robsimon) for the Jenkins JIRA (https://issues.jenkins-ci.org/secure/Dashboard.jspa) stopped working. I tried to reset the password however it appears that I forgot to update my email address so I cannot access any password update. The reset password page

Re: What I miss with Pipeline: Console output from each node

2016-06-01 Thread Craig Rodrigues
Hi, Did you try using the Pipeline Stage View Plugin ? It breaks the log down by stage quite nicely, such as in this example: https://jenkins.freebsd.org/job/FreeBSD_HEAD/ I haven't tried it with pipelines that execute in

Git Client Plugin wiki page missing data?

2016-06-01 Thread Dunnigan, Terrence J
Does anyone know why the Git Client Plugin wiki page is missing most of its data? Both of these URLs appear to point to the same page, and both appear to be missing everything save the Plugin Information table. https://wiki.jenkins-ci.org/display/JENKINS/Git+Client+Plugin

Re: Integrating promoted-builds DSL to a job-dsl-gradle-example project

2016-06-01 Thread Thomas Zoratto
Hello Frank, I guess the promoted builds plugin is not directly compatible with the job DSL plugin. I mean you can’t find DSL methods relative to the promoted builds plugin in the online API https://github.com/franknarf8/job-dsl-gradle-example/commit/f15b7fbf698d7be29b8527043d8649ab15559842

Re: pipeline global library no longer works on latest builds on Windows

2016-06-01 Thread tomwilson001 . us
Hi Baptiste, I'm sure it run on my machine because I'm able to do any other tasks with Jenkins. I just prefer to use the loop back address for now so that I do not accidentally let anyone log into my machine and run arbitrary code. Thanks On Wednesday, June 1, 2016 at 1:53:38 AM UTC-5,

Openid connect plugin

2016-06-01 Thread Michael Bischoff
I'm looking for a plugin that supports an arbitrary openid connect provider and I'd like to set login to only occur through this provider. I've seen that there is an openid plugin but seems to support openid 1 and 2 not openid connect(which is fundamentally different). There is also

Re: Email a build notification to the BitBucket user who pushed a branch

2016-06-01 Thread Mike Lehan
Sadly not; the developers list will email everyone with a commit made in the current branch. Thus if the developer has recently merged in master and then pushes, everyone who committed into the most recent diff between their working copy and master will receive an email, when they don't care

Re: How do I set up the GitHub Organization Folder Plugin?

2016-06-01 Thread Patrick Wolf
There seems to be an intermittent bug there that sometimes requires a Jenkins restart after the initial install before the GitHub Organization job type appears. Upgrade your plugins and do a restart to see if that clears up the problem. On Wed, Jun 1, 2016 at 6:55 AM, Takafumi Ikeda

Re: a new release of Gitlab Merge Request Builder Plugin ?

2016-06-01 Thread Paweł Kuszyński
Hi Thomas, I must admit, it is a surprising information for me. Thank you very much for your response. W dniu środa, 1 czerwca 2016 12:31:43 UTC+2 użytkownik Thomas Zoratto napisał: > > Hello, > > IIRC, this plugin is no longer maintained in favor of the gitlab plugin > > Le 1 juin 2016 à

Integrating promoted-builds DSL to a job-dsl-gradle-example project

2016-06-01 Thread François Genois
Good morning everyone, I'm currently using a project based on https://github.com/sheehan/job-dsl-gradle-example and I am trying to get the promoted-builds plugin to work with this project (https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Plugin). Everything works fine on my Jenkins

Re: Email a build notification to the BitBucket user who pushed a branch

2016-06-01 Thread Slide
The developers list should work for this, it is what I use with git. On Wed, Jun 1, 2016, 05:11 Mike Lehan wrote: > I spent a long time searching for a way to have Jenkins email whichever > user pushed a branch (on BitBucket) with the notification of how the build > for

problems running a rake task in jenkins

2016-06-01 Thread ziffification
I am having probelms configuring Rake in Jenkins to run a cucumber test i have. I cannot figure out what i should be filling in *tasks* is that just a name that you give to the job or is it something from the Rakefile?

How do I set up the GitHub Organization Folder Plugin?

2016-06-01 Thread Takafumi Ikeda
Hi fellow jenkins users!, During trying to use GitHub Organization Folder Plugin, I faced a problem so if any of you will help me, I really appreciate it. :-) First, I tried this demo built on docker(https://hub.docker.com/r/jenkinsci/pipeline-as-code-github-demo/), this worked quite well. I

Email a build notification to the BitBucket user who pushed a branch

2016-06-01 Thread Mike Lehan
I spent a long time searching for a way to have Jenkins email whichever user pushed a branch (on BitBucket) with the notification of how the build for that branch progressed. I wasn't able to find anything so wrote my own solution and documented it on Stack Overflow.

Re: a new release of Gitlab Merge Request Builder Plugin ?

2016-06-01 Thread Zoratto Thomas
Hello, IIRC, this plugin is no longer maintained in favor of the gitlab plugin > Le 1 juin 2016 à 11:32, Paweł Kuszyński a écrit : > > Hi, > > I wonder if there are plans of release of Gitlab Merge Request Builder Plugin > version 2.0.2. > > Best regards, > Paweł

How to include post steps in jenkins for OWASP Dependency-Check

2016-06-01 Thread Prakhash Sivakumar
Hi all, I'm following this tutorial to use OWASP Dependency-Check plugin as Jenkins plugin, I'm not clear about adding post steps and post build steps which are mentioned in this example, do I need to

What I miss with Pipeline: Console output from each node

2016-06-01 Thread Sverre Moe
I have been using Jenkins Multi-configuration. With my move over to Pipeline scripts and Jenkinsfile I still build on multiple nodes/slaves. When building all the nodes in parallel the console output is a mess. It is very difficult to separate the output from a single node. I really miss from

Regarding retrieval of graph data from Robot plugin Jenkins

2016-06-01 Thread Rohit Sakala
Hello, Can anyone point me out how to retrieve the data used for plotting the graphs in [0] ( Test trend and duration trend ) [0] https://jenkins.opendaylight.org/releng/view/openflowplugin/job/openflowplugin-csit-1node-flow-services-lithium-redesign-only-beryllium/1231/robot/ Thanks --

Re: Pipeline Global Library vars file naming convention

2016-06-01 Thread ludovic SMADJA
On our environment, the vars is camelCase without any problems. But we are using is as block : for example : JaliosPlugin{ mailrecipients : ludovic.sma...@jalios.com } Others elements are designed as classes and in our case are used with new operator , like : new

a new release of Gitlab Merge Request Builder Plugin ?

2016-06-01 Thread Paweł Kuszyński
Hi, I wonder if there are plans of release of Gitlab Merge Request Builder Plugin version 2.0.2. Best regards, Paweł Kuszyński -- 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,

Re: maven projects become slow after a couple of months

2016-06-01 Thread Jorg Heymans
FWIW i also tested with an empty maven repository, no difference. So it must be something that is happening when it parses the POM for dependencies ? On Wednesday, June 1, 2016 at 10:45:28 AM UTC+2, Jorg Heymans wrote: > > The maven repository used is one local to the executor. It is not >

Re: maven projects become slow after a couple of months

2016-06-01 Thread Jorg Heymans
The maven repository used is one local to the executor. It is not particularly huge. Note that developers executing builds locally of the same module do not see this problem. Doing a threaddump at the moment where it is scanning for projects revealed nothing special: Channel reader thread:

Re: Unable to successfully execute script from HP ALM using jenkins add-on

2016-06-01 Thread Zhar
Hi, I've changed a company a year ago and haven't been using Jenkins since. But...If I remember correctly problem was in the user which was registered to hp alm, and the user which was used by Jenkins. You need to register user, the one which will execute test, to hpalm and install add-in for

Re: Unable to successfully execute script from HP ALM using jenkins add-on

2016-06-01 Thread Arun Batra
Hi Roman, I got it working by running the jenkins slave as a UI. You know the one that runs from the browser and starts java and opens a small window which says connected. (I automated this startup later). It was not running for me before because I was running the slave as a Windows service.

Re: Unable to successfully execute script from HP ALM using jenkins add-on

2016-06-01 Thread Roman Shchekin
Do you have any solution for this? I am facing it right now. воскресенье, 26 июля 2015 г., 12:07:54 UTC+3 пользователь Arun Batra написал: > > Hi Zhar, > > I understand this is pretty old but i have to ask, Did you find a solution > to this? I am facing the same issue? > Any hints would be

plugin dependencis

2016-06-01 Thread Tali Helfman-Beniamin
Hi, I wanted to enable the 'Build timeout plugin' and I got into an infinite loop of dependencies that avoid enabling the plugin, although every dependence is in it's required status. You can see all the statuses in the image below:

Re: pipeline global library no longer works on latest builds on Windows

2016-06-01 Thread Baptiste Mathus
Hi, Are you sure it's not just the Git URL? Does really your Jenkins instance run on *your* machine? (127.0.0.1) Cheers Le 1 juin 2016 5:36 AM, a écrit : > Hi, >Jenkins pipeline global library no longer works for me on Windows which > unfortunately my employer

Re: deployment of multiple git branches

2016-06-01 Thread Tomáš Bohuněk
Thank you a lot guys. My question was - what do you use for this type of deployment - build from each feature branch. On Tuesday, May 31, 2016 at 1:04:30 PM UTC+2, Tomáš Bohuněk wrote: > > What do you recommend for deployment of multiple git repository (one > project with few feature branches).