issue with multi branch project plugin and git authentication

2015-09-14 Thread Gijs kuijer
Hi all! We are trying to set up Jenkins with the multi branch plugin. Jenkins is installed on a server together with Gitlab. The multi branch plugin works as far as listing all the branches and trying to build then when we use HTTPS as the credentials. The part that goes wrong is listed in this q

Deploy RPM artifacts to Nexus Maven repository

2015-09-14 Thread Sverre Moe
The Post build action "Deploy artifacts to maven repository" is only possible for a Jenkins maven project. I have several C++ multi-configuration projects and I want to publish my RPM artifacts to a Nexus repository. I could as a last resort just copy the RPM files directly to the storage wit

Re: Maven Info Plugin NullPointer Exception

2015-09-14 Thread Verjigorm
J enkins 1.620 Jenkins Master OS: SUSE LES 11.3 Jenkins Slave OS: Windows 7 Java: jdk1.7.0_15 List of current Plugins: About 60 The error alwys occures while some Selenium-Tests(with Chrome!) are running on the windows-slave. Am Freitag, 4. September 2015 00:18:56 UT

How Can I copy log (from System Log) from my GUI to my linux machine through plugin/script?

2015-09-14 Thread Shubham Sharma
Hi All, I want to copy Log under Manage Jenkins-->>system Log through some script or plugin to my host machine . Please Help how Can I do this. Regards Shubham -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group an

Re: Workflow : how to send a basic "build failed" mail

2015-09-14 Thread Michael Neale
Interesting - is there no way to have an on failure handler (perhaps for all steps) vs a per node or global catch/print writer? (whilst it works it seems to be more work for a common enough desire for failure messages, making me think there is probably another way). On Friday, September 11, 20

Crowd2 plugin sso issues

2015-09-14 Thread LIGADE, SHAILESH
This post has NOT been accepted by the mailing list yet. Hello, Jenkins - 1.594 behind apache, crowd 2.8.0 I have configured crowd2 plugin in Jenkins. However, I am unable to do SSO. If I logon to crowd first and then try to logon to Jenkins, I still get login screen. Crowd and Jenkins are in

Re: AWS Elastic Beanstalk No Downtime Upgrade /Cname swap.

2015-09-14 Thread Michael Neale
Not sure if there is a plugin that supports it, but from reading this: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.CNAMESwap.html it involves creating new environments and taking sure that RDS is NOT managed by beanstalk (that is a bit of a big deal if you do it wrong,

Re: Skype Integration With Jenkins

2015-09-14 Thread Michael Neale
I haven't run this plugin, but I know in the past I have looked at it as others have asked, to me it looks like a bit of a brittle setup, were you unable to follow all the steps? (to me isn't clear if it has to be running). On Friday, September 11, 2015 at 7:23:21 PM UTC+10, Ajnish Kumar wrote

Re: issue with multi branch project plugin and git authentication

2015-09-14 Thread Mark Waite
I posted one possible answer on the stackoverflow site you referenced, based on my assumption that you are running a version of command line git which is too old to include enough credentials support for the Jenkins git plugin. If the stackoverflow answer is not sufficient, please provide more inf

Filter Plugin updates / Sign update information

2015-09-14 Thread steffen . breitbach
Hi everyone! I want to filter "malicious" plugin updates from the update center so no one can install them accidentially. Just stripping the update information from the JSON doesn't work because the output is signed. Is there another way to filter updates? If not, is there a documentation about

Re: Workflow : how to send a basic "build failed" mail

2015-09-14 Thread Jesse Glick
On Monday, September 14, 2015 at 7:42:13 AM UTC-4, Michael Neale wrote: > > is there no way to have an on failure handler (perhaps for all steps) vs a > per node or global catch/print writer? > JENKINS-28119 -- You received this message beca

Re: Filter Plugin updates / Sign update information

2015-09-14 Thread Daniel Beck
You could look at how Juseppe signs its update site data: https://github.com/yandex-qatools/juseppe/blob/master/src/main/java/ru/lanwen/jenkins/juseppe/gen/Signer.java On 14.09.2015, at 15:09, steffen.breitb...@1und1.de wrote: > Hi everyone! > > I want to filter "malicious" plugin updates from t

Global credentials' contents viewable by all

2015-09-14 Thread Jeff
I'm hoping someone can nudge me in the right direction because I have to believe we are doing something wrong. "Jenkins: The Definitive Guide" (O'Reilly) has been of no help toward solving this issue. Nothing turns up with net searching either. Your help would be greatly appreciated. *SHORT*: *

Re: Global credentials' contents viewable by all

2015-09-14 Thread Stephen Connolly
Are you storing your own credentials in Jenkins' store or in the per-user credentials store? The credentials in Jenkins' store should be visible to all users with Credentials/View etc The credentials in the per-user credentials store should be visible to only the user that they are defined in. T

Re: AWS Elastic Beanstalk No Downtime Upgrade /Cname swap.

2015-09-14 Thread Aldrin Leal
Jacek, Re: beanstalker, it supports Docker - just check the base archetypes. -- -- Aldrin Leal, / http://about.me/aldrinleal On Sat, Sep 12, 2015 at 8:08 AM, Jacek Tomaka wrote: > Hi, > Is there a plugin allowing to do CNAME swap upgrades of Elastic Beanstalk > app? > > Any plans to implement

Re: Global credentials' contents viewable by all

2015-09-14 Thread Jeff
Hi Stephen, Thanks for the reply! I made a lot of progress on this, somehow, where I never was making progress before... since posting to the group. Figures. It turns out that because the users could see "Credentials" as an option always at left, they were selecting that and blindly choosing th

job dsl problem: groovyScriptFile statement does not create a build step

2015-09-14 Thread Simon Haegler
hi jenkins users, i am working on our in-house 3rd-party dependency build system and ran into an issue that the JOB DSL statement "groovyScriptFile" does not create the corresponding build step. here is the relevant snippet from the seed job groovy script: steps { groovyScriptFile("${scriptP

Re: job dsl problem: groovyScriptFile statement does not create a build step

2015-09-14 Thread Simon Haegler
apologies, forgot the versions: - jenkins 1.609.3 - job dsl plugin 1.38 - groovy plugin 1.27 On Monday, 14 September 2015 19:54:47 UTC+2, Simon Haegler wrote: > > hi jenkins users, > > i am working on our in-house 3rd-party dependency build system and ran > into an issue that the JOB DSL statemen

[workflow plugin] reading property files using wildcards

2015-09-14 Thread James Rawlings
Hi, I'm using the workflow plugin combined with the nexus maven plugin. When performing a 'org.sonatype.plugins:nexus-staging-maven-plugin:1.6.5:deploy' a file is created in the workspace under target/ which contains the stagingRepositoryId property. This id is required by the workflow scrip

Re: job dsl problem: groovyScriptFile statement does not create a build step

2015-09-14 Thread Victor Martinez
Hi Simon, A few suggestions in case you haven't checked them yet: - Play area: http://job-dsl.herokuapp.com/ - Docs refererence: https://jenkinsci.github.io/job-dsl-plugin/#method/javaposse.jobdsl.dsl.helpers.step.StepContext.groovyScriptFile - Can you check your config.xml file? %YOU

Re: Workflow : how to send a basic "build failed" mail

2015-09-14 Thread Michael Neale
great - however (as commented in the ticket) it still isn't that friendly to use compared to sending a "positive" email. On Monday, September 14, 2015 at 11:57:06 PM UTC+10, Jesse Glick wrote: > > On Monday, September 14, 2015 at 7:42:13 AM UTC-4, Michael Neale wrote: >> >> is there no way to ha

Interating

2015-09-14 Thread manoj
how to integrate Jenkin with tasktop -- 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 th