config.xml plugin syntax and getting list of plugins that a config.xml requires ?

2015-02-24 Thread Max Rydahl Andersen
Hi, I just recently become aware of `/pluginManager/prevalidateConfig` which can let me upload a config.xml and have jenkins automatically install any missing plugins. In that context I got two questions: 1) is there a way to specify in config.xml I just want the latest version of the plugin

Re: Change Directory/File Permissions

2015-02-24 Thread Baptiste Mathus
IIUC you want to run a"post-action"? Le 24 févr. 2015 15:46, "Erick R" a écrit : > Hello! I've managed to setup Jenkins to do a lot of the grunt work > normally involved in deployment, but I still have a pain point with the > file permissions, which I'm currently having to setup manually after a

Re: Clean up after build using build flow plugin

2015-02-24 Thread Baptiste Mathus
Either try to use the workspace cleanup plugin and/or some groovy step to do that and retrieve that variable? My 2 cents Le 24 févr. 2015 15:43, "Katie Outram" a écrit : > After the build completes, I need to clean up the workspace that was > created during execution of the build. The workspace

Re: Error Acces Git Repositories : stderr: Permission denied (publickey).

2015-02-24 Thread GPG Zatory
Hi Mark, i will attempt El jueves, 15 de enero de 2015, 15:45:37 (UTC-6), GPG Zatory escribió: > > Hi, > > i have this error in mi jenkins : > > Failed to connect to repository : Command "git ls-remote -h > g...@github.com:vinco/x.git HEAD" returned status code 128: > stdout: > stderr: Permissi

Re: SVN post commit hook - no subversion consumers for UUID

2015-02-24 Thread Mark Lewis
Daniel, I wish that were the case, but I set logging to ALL and none of the messages from SubversionRepositoryStatus were logged. The OP set logging to FINE. I expect one of us would've seen messages for the process starting

Push-button task functionality

2015-02-24 Thread George Sakhnovsky
We're currently implementing push-button task functionality (such as release) via the batch task plugin. It works with no major issues for freestyle projects, but breaks when used with multi-configuration (matrix) style projects: the task only executes on one of the configured hosts, not all of

Re: Continuously display progress/status of test jobs?

2015-02-24 Thread David
BTW it should be noted that we are not running Java Unit testing or anything like that - otherwise this plugin might have been a good option: https://wiki.jenkins-ci.org/display/JENKINS/Test+In+Progress+Plugin. On Tuesday, 24 February 2015 21:41:54 UTC+1, David wrote: > > Hi, > > We use jenkins

Continuously display progress/status of test jobs?

2015-02-24 Thread David
Hi, We use jenkins for long running test executions and are looking for a better way to display progress during a test. At the moment we use the Groovy Post Build plugin for processing the build log after a full test is complete. Is there any way to somehow update the build page for a specific

Re: SVN post commit hook - no subversion consumers for UUID

2015-02-24 Thread Daniel Beck
Are you sure you're not being misled by that log message? The real trigger happens at https://github.com/jenkinsci/subversion-plugin/blob/master/src/main/java/hudson/scm/SubversionRepositoryStatus.java#L165 It also uses the logger of SubversionRepositoryStatus to inform about its actions -- watc

Re: SVN post commit hook - no subversion consumers for UUID

2015-02-24 Thread Mark Lewis
I'm able to get a list of projects putting this in the console: println Jenkins.instance.getAllItems() However, none of the types shown extend SCMSourceOwner (e.g. hudson.model.FreeStyleProject). The implementation of getAllItems() is checking types

Re: [workflow-plugin] stage concurrency not working outside of node scope?

2015-02-24 Thread sebastien . barthelemy
Hi again, I still wonder wether this is a bug, which I should file, or not. Maybe I shall detail a bit further, see below. Thanks ! On Friday, February 20, 2015 at 1:06:38 PM UTC+1, sebastien@gmail.com wrote: > > Hello, > > I'm experimenting with the "stage" command using the flow below, a

Re: [workflow plugin] sh hangs when setting env.PATH

2015-02-24 Thread Scott Armit
Opened a Jira issue: https://issues.jenkins-ci.org/browse/JENKINS-27105 On Tuesday, February 24, 2015 at 11:42:05 AM UTC-5, Scott Armit wrote: > > Even on a separate node, the 'env' will cause the 'sh' task to hang. For > example, I have a windows slave and master: > > node('windows-doc') { >

Re: [workflow plugin] sh hangs when setting env.PATH

2015-02-24 Thread Scott Armit
Even on a separate node, the 'env' will cause the 'sh' task to hang. For example, I have a windows slave and master: node('windows-doc') { echo "On my Windows slave" env.PATH = "C:\\Program Files (x86)\\MadCap Software\\MadCap Flare V10\\Flare.app;%PATH%" } node('master') { echo "On

Re: jenkins integrated with tfs! issue after tf get

2015-02-24 Thread Jcun
So the operations team saw some firewall blocks from my machine hosting jenkins to the tfs machine. They mentioned soap calls? Does anyone have a list of ports that Jenkins requires, how it communicates, etc from the network admin perspective? On Monday, February 23, 2015 at 10:09:04 AM UTC-

Re: SVN post commit hook - no subversion consumers for UUID

2015-02-24 Thread Mark Lewis
I am Brantley's colleague. Just in case this was tied to security, I converted this block of code to the following Groovy script which should print them all:

Change Directory/File Permissions

2015-02-24 Thread Erick R
Hello! I've managed to setup Jenkins to do a lot of the grunt work normally involved in deployment, but I still have a pain point with the file permissions, which I'm currently having to setup manually after a Jenkins build runs successfully. Search engines seem to mostly have no info on this (

Clean up after build using build flow plugin

2015-02-24 Thread Katie Outram
After the build completes, I need to clean up the workspace that was created during execution of the build. The workspace is defined in our scripts that get executed during the build. what this comes down to is I want to remove the contents of the directory ( bParent.build.properties.environm

Re: [workflow-plugin] asynchronous model to trigger multiple downstream jobs

2015-02-24 Thread Jesse Glick
Probably https://issues.jenkins-ci.org/browse/JENKINS-26123 is what you were looking for. -- 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+unsub

Re: Build Flow Plugin questions on how to access defined values

2015-02-24 Thread Katie Outram
Thanks! What worked for me was println bParent.build.properties.environment['GIT_TREE'] The issue I had was due to the quotes and how I was using them. Thanks for your help! On Thursday, February 19, 2015 at 10:53:47 AM UTC-5, rginga wrote: > I’m thinking that this: > > > > println “$

RE: Mirror Sites

2015-02-24 Thread John Mellor
Your site appears to have messed up routing or dns. Manually add a well-known dns such as 8.8.8.8 to your machine to work around the issue. Also verify that your routing and netmask is correct and you can ping arbitrary sites on the internet – try Slashdot.org and news.google.com for instance.

Re: SVN post commit hook - no subversion consumers for UUID

2015-02-24 Thread Brantley Hobbs
James, We are also experiencing this same issue. Were you able to find more information? Thanks, Brantley On Tuesday, November 11, 2014 at 4:20:52 AM UTC-5, James Telfer wrote: > > Hi all, > > I've been working through this issue and trying to read other resources on > post-commit hooks witho

Re: Jenkins remote execution error

2015-02-24 Thread Slide
It looks like your email settings are not correct, the Mailer plugin is not able to authenticate with the email server you setup. On Tue Feb 24 2015 at 4:36:16 AM Prasad jvv wrote: > HI All, > > I am using Jenkins ver. 1.593 in centos, i need run some scripts on remote > machine. I have created

Jenkins remote execution error

2015-02-24 Thread Prasad jvv
HI All, I am using Jenkins ver. 1.593 in centos, i need run some scripts on remote machine. I have created user with private key, please explain the procedure I am getting the below message from own box for sending mail... javax.mail.AuthenticationFailedException

Very first job on EC2 slave is really slow

2015-02-24 Thread phejman
Hi everyone, I've recently stepped into a really strange issue to me, I wonder if you could explain me mechanisms that are happening during my build processes. I am using the EC2 plugin to spawn a slave agents. I've prepared provisioned slave image with all necessary packages, repository cloned

Re: Clearcase HOME

2015-02-24 Thread Mohamed Sathack
Hi Vincent, I was referring to CCRC only. Since we are having many number of environments, I don't want to install Jenkins on each and every environment(we have many QA environments). So I will configure Slave as well. In such case, suggest the one which I have to use here. I am already start

Jenkins Jcloud Opensatck error

2015-02-24 Thread Sumit Kumar
*Hi i m getting the follwing error when i tried to provision a slave on Opensatck.* *The Slave gets created on openstack but it destroys it with following exception* Error while serving http://localhost:8081/cloud/fedora/provision java.lang.reflect.InvocationTargetException at sun.re

Conditional BuildStep Git Tag Token Macro

2015-02-24 Thread Sverre Moe
I have defined a conditional build step that should check for a given git tag before executing a shell script. Using the Conditional BuildStep Plugin Exception caught evaluating condition: [org.jenkinsci.plugins.tokenmac

how to build a windows phone 8 app dynamically in jenkins using only command prompt?

2015-02-24 Thread sakthi dass
I want to build a *windows phone 8 app* which is store in my desktop in such format "C:\\phoneapp\phoneapp.sln". I want to build it using *jenkins server*,but i want to build it dynamically with only using* command prompt*.can anyone please help me?

Re: Learning Jenkins Groovy with Jenkins API

2015-02-24 Thread Sverre Moe
I have been using "Execute Groovy Script". Then it looks like I should be using "System Groovy Script" instead. Would a groovy script with Scriptler also have access to the Jenkins internals? mandag 23. februar 2015 21.51.29 UTC+1 skrev LesMikesell følgende: > > On Mon, Feb 23, 2015 at 9:19 AM,

Re: dimensions CM dmcli not found on jenkins slave

2015-02-24 Thread mr0reed
Having the same problem. Is there any new knowledge how to do this? Am Sonntag, 14. Juli 2013 21:08:30 UTC+2 schrieb Richard Bywater: > > Having never used the tool, just a guess, but would logging into the slave > machine as the user you specified in the Jenkins slave config and running > the