How to download and view all previous artifacts from artifactory

2016-11-29 Thread pradeep palem
Hi All, I am trying to deploy the ant and maven artifacts to artifactory . I can able to deploy the artifacts , but when i trying to download or veiw all artifacts from artifactory, i am able to download only latest artifacts and veiw only latest. I want to see all the artifacts and i want to d

Re: Workspace Cleanup Plugin

2016-11-29 Thread Victor Martinez
Hi, It seems there is already a known issue with that version: - https://issues.jenkins-ci.org/browse/JENKINS-30179 What about '**/jdbc.test.properties'? Have you tried to use the latest version of that plugin? Cheers On Monday, 28 November 2016 14:16:56 UTC, Виталий Пучков wrote: > > Hi, i'm t

Unable to find suitable ssh agent when trying to connect windows slave

2016-11-29 Thread Weina Scott
I recently upgraded Jenkins. When I did that I try to run tests on Windows Internet Explorer through jenkins, and I get the error: Unable to find suitable ssh agent Has anyone seen this er

Unmask credentials in pipeline

2016-11-29 Thread Raja Chinnam
Hello How can I pass the username and password to my a custom application in the pipeline? I have username and password added as credentials and am using this code: withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'usrid', passwordVariable: 'USR', usernameVariable: 'PWD'

Re: Slave Node can't connect to Master on Ubuntu 16.10

2016-11-29 Thread 'imker25' via Jenkins Users
Hello again, well I found a solution for this. Root cause of the problem is, that Ubuntu 16.10 uses Java 9 by default. And Jenkins supports Java 8. So I removed Java 9 from the node and installed Java 8 again. No I can start my node, and all works fine. Am Montag, 28. November 2016 20:45:48 UTC

Re: Jenkins EC2 plugin: Use Instance-ID of slave instead if AMI-ID

2016-11-29 Thread bleras00
Have you tried with aws cli console? I guess you could install it on the jenkins instance and execute the command line to remotely start an existant instance http://docs.aws.amazon.com/cli/latest/reference/ec2/start-instances.html Regards, El dilluns, 16 juliol de 2012 9:09:44 UTC+2, Tisch va

Re: Ansible plugin problem in pipeline code

2016-11-29 Thread jcsirot
Hello Guy, Do not hesitate to open a JIRA ticket with the ansible-plugin component: https://issues.jenkins-ci.org/issues/?jql=project%20%3D%20JENKINS%20AND%20component%20%3D%20ansible-plugin I'm going to look at this issue to understand what's going on. -- Jean-Christophe Le lundi 28 novembre

Pipeline job with shared library version as parameter?

2016-11-29 Thread Torsten Reinhard
Hi, I want to setup a pipeline for our shared groovy library. It looks like node ('master') { ... stage "CI: Build, unit test" ciBuildTest() stage "CI: Integration test (${env.INTEGRATIONTEST_PIPELINE})" // INTEGRATIONTEST_PIPELINE is a property of the job running th

Re: pipeline : Get the username from the last commit

2016-11-29 Thread Daniel Beck
> On 29.11.2016, at 14:54, Jonathan Hodgson wrote: > > When a build happens after a push to the repository, I would like to email > the person who did the push (or the last commit, which usually amounts to the > same thing) with the result. > > Is there a way to get the user's name and email?

pipeline : Get the username from the last commit

2016-11-29 Thread Jonathan Hodgson
Hi, When a build happens after a push to the repository, I would like to email the person who did the push (or the last commit, which usually amounts to the same thing) with the result. Is there a way to get the user's name and email? -- You received this message because you are subscribed to

Perform Maven Release - remote ?

2016-11-29 Thread Julien Baldy
Hello everyone! First, sorry for my bad english, i learn it. I know it is possible to use buildwithparameters with URL. But i want use Schedule Maven Release Build at remote access.. like a buildwithparameters. It is possible ? Thank you for your reply! Best, -- You received this message be

Re: Jenkins Pipeline : How could I access the git repository cloned at job start

2016-11-29 Thread Jean-Luc Pinardon
An additional question related with the current one is how to propagate a set of env var read from a property file ? In other words, how to have a withEnv equivalent with a property file content. J.L.P. Le mardi 29 novembre 2016 10:14:03 UTC+1, Jean-Luc Pinardon a écrit : > > Dear all, > > I am

Re: Jenkins Pipeline : How could I access the git repository cloned at job start

2016-11-29 Thread Jean-Luc Pinardon
Well, it seems that I have not been clear enough... My problem is at the very begining of the job, when the jenkinsfile (and... I thought... possibly other files from the repository) is cloned :

Re: Jenkins Pipeline : How could I access the git repository cloned at job start

2016-11-29 Thread nicolas de loof
by pipeline design, you need to define node usage (so workspace) and how long same node has to be used to run your build. This allows to distribute the build steps on multiple nodes (including parallel execution). For simplest scenario, you can just wrap the whole pipeline with a `node() { }` block

Jenkins Pipeline : How could I access the git repository cloned at job start

2016-11-29 Thread Jean-Luc Pinardon
Dear all, I am exploring pipeline features, and I fall into a problem. The repository is indeed correctly cloned at job start and the "jenkinsfile" is run. But I "discover" that I cannot access the cloned files from within the stages within nodes. Just because, the workspace used at job begin is