How to cancel plugin update

2016-02-12 Thread Paweł Wiśniewski
Hi All, I need to cancel plugin update. I've installed git-plugin and it have updated my promoted-build-plugin. The promotion plugin have already been installed so now in Update Center I have: > promoted builds plugin promoted-builds plugin is already installed. > Jenkins needs to be

Re: How to Uninstall Jenkins on windows machine

2016-02-12 Thread Victor Martinez
Look at: - https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+as+a+Windows+service There is already a specific section about that question Cheers On Friday, 12 February 2016 07:32:41 UTC, Jenkins wrote: > > HI, > > How to Uninstall Jenkins on windows machine? > > Thanks, > Naveen >

How to list all jobs having a Groovy post build script in Jenkins ?

2016-02-12 Thread valnci89
Hi, I want to know if there is way I can list all Jenkins jobs that are having "Groovy post build script" plug-in enabled for them. Please let know if there is any way I can do this. Thanks, valnci -- You received this message because you are subscribed to the Google Groups "Jenkins

Re: How to cancel plugin update

2016-02-12 Thread Victor Martinez
Hi, As long as you don't restart your Jenkins service you won't use that version of promoted build plugins afaik. You might need to somehow, before restarting your service: - remove that hpi file and download the previous version manually

Failed to parse POMs : MavenEmbedderException No implementation for org.apache.maven.repository.RepositorySystem was bound.

2016-02-12 Thread Indra Gunawan (ingunawa)
Suddenly in the past half-day or so, Maven2/3 Type jobs on our Jenkins instances running rather recent version LTS 1.544.3, 1.580.3 and 1.625.3 are hit with this error: Parsing POMs ERROR: Failed to parse POMs

Problem with Jenkins JIRA/LDAP Account setup. Can't access my account

2016-02-12 Thread Daniel
Hi, I'm having this problem since about half a year and tried multiple times to contact someone about it via mail, irc, etc. Funny enough it seems impossible to get in contact with someone about problems with the jenkins infrastructure without access to said infrastructure.. The problem: I

Re: How to list all jobs having a Groovy post build script in Jenkins ?

2016-02-12 Thread Victor Martinez
Yep, see the below steps: 1) Go to your script console in jenkins: http://yourJenkinsUrl/script 2) List jobs Jenkins.instance?.items.each { println it.name } 3) List jobs with post build actions Jenkins.instance?.items.findAll { it.getPublishersList() != null && it. getPublishersList().size() >

Re: How to cancel plugin update

2016-02-12 Thread Daniel Beck
On 12.02.2016, at 02:48, Paweł Wiśniewski wrote: > I need to cancel plugin update. I've installed git-plugin and it have updated > my promoted-build-plugin. The promotion plugin have already been installed so > now in Update Center I have: Shut down Jenkins. Open

BUILD_ID used to give date, now gives BUILD_NUMBER

2016-02-12 Thread Robert Beddow
Hi, I posted this on the chat too. I've just noticed that the Environment variable BUILD_ID has recently (somewhere between 1.595 and 1.646) changed to be identical to BUILD_NUMBER (not much use) when it previously held the start date & time of the build (very useful). Is this an intentional

Re: BUILD_ID used to give date, now gives BUILD_NUMBER

2016-02-12 Thread Robert Beddow
Ok, I found this: https://issues.jenkins-ci.org/browse/JENKINS-26520 On Friday, 12 February 2016 11:47:00 UTC+1, Robert Beddow wrote: > > Hi, > > I posted this on the chat too. > > I've just noticed that the Environment variable BUILD_ID has recently > (somewhere between 1.595 and 1.646)

Re: How to cancel plugin update

2016-02-12 Thread Mohan PAKALAPATI
Hello, You can easily downgrade/uninstall updated Plugins from Jenkins GUI Plugins Manger window you can navigate like this Jenkins main page-->Manage Jenkins-->Manage Plugins-->Plugin Manager-->*Installed Tab* *[image: Inline image 1]* Best regards, Mohan Pakalapati On Fri, Feb 12, 2016

Re: Problem with Jenkins JIRA/LDAP Account setup. Can't access my account

2016-02-12 Thread Daniel
Hi, Thanks for the fast reply. Mid 2015 sounds about right. I had an account before (and used it). Is it possible to either readd it or remove the whole account so I can reregister with my email address? On Friday, February 12, 2016 at 1:45:22 PM UTC+1, Daniel Beck wrote: > > > On 12.02.2016,

how can Jenkins notify on the type of build and component area that the build is used for

2016-02-12 Thread Jenkins
Hi, Can Jenkins notify any scheduler on the type of build and component area that the build is for? Request to provide some idea here. Thanks, New to Jenkins -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group

Re: Problem with Jenkins JIRA/LDAP Account setup. Can't access my account

2016-02-12 Thread Daniel Beck
On 12.02.2016, at 03:05, Daniel wrote: > tried multiple times to contact someone about it via mail, irc, etc. Funny > enough it seems impossible to get in contact with someone about problems with > the jenkins infrastructure Whatever you did, it doesn't look like

why does this happen?

2016-02-12 Thread Peter Berghold
[image: multi-jenkins.PNG] -- 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

Re: why does this happen?

2016-02-12 Thread Björn Stabel
Blind, uneducated guess: did you deploy the .war file twice, maybe under different names? On 12/02/16 15:48, Peter Berghold wrote: multi-jenkins.PNG -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop

Block when direct downsteam build is running

2016-02-12 Thread gseux . criteo
Hello, I would like to block the execution of a job A when its direct child B is running. Documentation for the "Block build when downstream project is building" states it blocks when all transitive children are building. Is there any way to only block on the direct child builds? So far, I've

Re: why does this happen?

2016-02-12 Thread Peter Berghold
Nope. There's a single war file in /var/lib/tomcat6/webapps named "jenkins.war" but there is a directory "jenkins" which tomcat unpacked the war file into. On Fri, Feb 12, 2016 at 12:09 PM Björn Stabel wrote: > Blind, uneducated guess: did you deploy the .war

Re: plugin info

2016-02-12 Thread Andrew Bayer
Assuming you're using a freestyle job, that's the Maven task in Jenkins core. If you're using a Maven job, up that's the Maven plugin. On Friday, February 12, 2016, Irfan Sayed wrote: > Hello, > > I need to verify the build option "invoke top level maven targets" is from >

plugin info

2016-02-12 Thread Irfan Sayed
Hello, I need to verify the build option "invoke top level maven targets" is from which Jenkins plugin? can someone please let me know the plugin name ? Regards -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group

Using the features provided by a plugin in a workflow/pipeline

2016-02-12 Thread ok999
I have a jenkins standalone job, that uses the MSTest plugin , it publishes the test result (.trx) on the jenkins UI. I want to use this feature of the plugin via the workflow script. How can i achieve this? At the moment, i am using

Re: Publishing vstest results?

2016-02-12 Thread ok999
@James any idea on how to use the plugin via the new jenkins pipeline. I am using the MS Test plugin to publish the .trx. But after adopting the new pipeline, i am not sure on how to call this action via a workflow. On Tuesday, November 11, 2014 at 6:00:55 PM UTC-6, James Telfer wrote: > >