Re: Git polling: could not lock config file .git/config: File exists

2015-05-19 Thread Mark Waite
There are a few bug reports which might give you hints of things to try. The bug reports do not mention your specific case ("File exists"), but the ideas may help you explore the problem further. https://issues.jenkins-ci.org/browse/JENKINS-21914 - matches your error message, but I can't duplicate

Re: warnings plugin. Filtering builds for trend graph and differences by parameter.

2015-05-19 Thread Ullrich Hafner
No, this is not possible. > Am 19.05.2015 um 14:42 schrieb Jacek Tomaka : > > Hi, > Does warnings plugin allow to filter builds that appear on the warning trends > graph? > > We do incremental builds during the day and only full builds (in clear > workspace) nightly. > > These builds differ b

Re: warning plugin, present information about log filename

2015-05-19 Thread Ullrich Hafner
> Am 19.05.2015 um 12:18 schrieb Tomasz Majchrowski : > > > Thank you Ulrich for quick response. > > 1) With the reference to the console log: What about adding information that > the warning is coming out of console log and just link to console log ? Some parsers do this already (Maven parse

How to deploy readily availble war file in JBOSS 6.x using Jenkins

2015-05-19 Thread Victor Martinez
Hi there, There are different strategies based on your build tools and stage environments: - gradle https://github.com/bmuschko/gradle-cargo-plugin - maven http://docs.jboss.org/jbossas/7/plugins/maven/latest/ - shell script via scp/rsync If so you can even connect your servers into jenkins as

Git polling: could not lock config file .git/config: File exists

2015-05-19 Thread Dunnigan, Terrence J
I've seen this error more than a few times on some of my machines: Has anyone else seen this? Jenkins 1.554.3, Git plugin 2.2.9, Git client plugin 1.12.0 Windows 7 Slave connected as a service Git 1.9.5.msysgit.1 running on the slave Started on May 19, 2015 4:30:39 PM Polling SCM changes on Bas

Occasional issues with Jenkins job

2015-05-19 Thread Ron Morin
hi, I am not sure if this is the correct place to post Jenkins questions\issues. so please point me to the right place if this is not the right forum. I am seeing two issues that come up frequently. 1.) in the Jenkins log I see the error message: May 19, 2015 12:57:05 PM SEVERE hudson.trigg

How to deploy readily availble war file in JBOSS 6.x using Jenkins

2015-05-19 Thread MP Rocket
Hi All, I am new to Jenkins. I am working in very small testing organization. My organization is trying to implement Automated deployment process. I kindly request every one help me out in this regard. I am not getting how to create a new job only for the deployment of a war from a

Re: workflow plugin: how to execute shell command with quoted arguments?

2015-05-19 Thread Alexander Uvizhev
Thanks for your reply but that doesn't work either. вторник, 19 мая 2015 г., 18:58:12 UTC+3 пользователь Baptiste Mathus написал: > > Cannot try just now. But wild guess: as this is groovy, you may want to > try triple quoting (just use """ instead of one ") the outside expression. > Not sure

Re: workflow plugin: how to execute shell command with quoted arguments?

2015-05-19 Thread Baptiste Mathus
Cannot try just now. But wild guess: as this is groovy, you may want to try triple quoting (just use """ instead of one ") the outside expression. Not sure it will work though since what you did already looks correct to me. My 2 cents Le 19 mai 2015 5:40 PM, "Alexander Uvizhev" a écrit : > To be

Re: Two jobs that never shall build if the other one builds

2015-05-19 Thread Baptiste Mathus
Better use the throttle concurrent build plugin IMO. Works fine for us: Define a central token. Then configure both job to "acquire" it when starting. Done. Both jobs won't run at the same time. Cheers Le 19 mai 2015 3:58 PM, "tps800" a écrit : > Hi! > > I'm having two jobs each one depends on

Re: workflow plugin: how to execute shell command with quoted arguments?

2015-05-19 Thread Alexander Uvizhev
To be clear what I try to do is: sh"myexecutable 'argument'" вторник, 19 мая 2015 г., 18:38:18 UTC+3 пользователь Alexander Uvizhev написал: > > I need to execute shell command with quoted argument like this: > myexecutable 'argument' > That's because argument can be interpreted wrong in some c

workflow plugin: how to execute shell command with quoted arguments?

2015-05-19 Thread Alexander Uvizhev
I need to execute shell command with quoted argument like this: myexecutable 'argument' That's because argument can be interpreted wrong in some cases e.g. "-input_value_looking_like_param". Seems like 'sh' wipes all quotes in command string no matter what types of escaping I tried. Is there a wa

Swarm clients do not connect after Jenkins master restart

2015-05-19 Thread Christopher Ladd
We have Jenkins master version 1.565.3 and Jenkins swarm plugin version 1.24 and when we perform a restart of our Jenkins master, our clients cannot connect. They all show up, but then never establish a connection. It should be noted that we have about 30 slaves trying to connect after the re

Re: Assigning PROMOTED build number

2015-05-19 Thread Shiamak
No one had/have such a problem? or perhaps the stated problem is not clear enough? On Friday, May 15, 2015 at 9:32:26 PM UTC-4, Shiamak wrote: > > Hello, > > I have worked out two scripts where calling scripts promotes a build > 'automatically' and once the build is promoted , the build number

RE: How can I handle over an environment variable within a build flow?

2015-05-19 Thread Ginga, Dick
Let’s see,,, 1. What SCM are you using? I use Perforce and can tell the Perforce Plugin “not” to manage “client views” and create one in a fixed location AND set the Use custom workspace in Advanced Project Options to tell each job to use the same workspace. Therefore, Jenkins will not c

How can I handle over an environment variable within a build flow?

2015-05-19 Thread tps800
Hi! I've set up a build flow using the "Build Flow Plugin ": guard { build( "job1" ) build( "job2" ) build( "job3" ) build( "job4" ) } rescue { build( "job_cleanup" ) } Now I want two things: 1. All these jobs sha

Two jobs that never shall build if the other one builds

2015-05-19 Thread tps800
Hi! I'm having two jobs each one depends on the other and shall never build while the other one builds. Both are independend of each other except they are using the result of each: - cmake blocks building of llvm - llvm blocks building of cmake I've entered cmake as blocker in llvm, and llvm a

warnings plugin. Filtering builds for trend graph and differences by parameter.

2015-05-19 Thread Jacek Tomaka
Hi, Does warnings plugin allow to filter builds that appear on the warning trends graph? We do incremental builds during the day and only full builds (in clear workspace) nightly. These builds differ by value of parameter BUILD_TYPE. It is either FULL or CI. It makes little sense to include

Re: 'inheritance-plugin' vs. matrix jobs

2015-05-19 Thread Jacek Tomaka
Łukasz, I am not sure what you want to achieve and i am not the expert on matrix jobs but i believe you might want to have a look at "mating" in inheritance project. But afaik you cannot mix inheritance and matrix type of jobs. --End of answer to question. Mating allows you to configure clas

Re: warning plugin, present information about log filename

2015-05-19 Thread Tomasz Majchrowski
Thank you Ulrich for quick response. 1) With the reference to the console log: What about adding information that the warning is coming out of console log and just link to console log ? 2) With the reference to the external file: If I understand this right, the issue is that the input file migh

Re: warning plugin, present information about log filename

2015-05-19 Thread Ullrich Hafner
This is not possible. Since a parser might be used to parse the console log or a external file this information is not available. > Am 19.05.2015 um 11:18 schrieb Tomasz Majchrowski : > > Hi, > > Does anyone know if there a possibility to include log file-name that > contains warning in the re

warning plugin, present information about log filename

2015-05-19 Thread Tomasz Majchrowski
Hi, Does anyone know if there a possibility to include log file-name that contains warning in the report produced by warning plugin? The generated report is very detail, however I could not find this information out there. Thanks in advance Best regards, Tomasz Majchrowski -- You received t

Change log unavailable

2015-05-19 Thread David Aldrich
http://jenkins-ci.org/changelog gives: 503 Service Unavailable Best regards David -- 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..

'inheritance-plugin' vs. matrix jobs

2015-05-19 Thread Łukasz Kurek
Hello all, It seems for me that Jenkins 'inheritance-plugin' does not support matrix jobs ("Multi-configuration projects"). But maybe I'm missing something. Can anyone confirm that? -- Wszebor -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group

Re: Starting Jenkins via commandline and use configuration of the windows service

2015-05-19 Thread newInHere
Ok i have solved my problem to run jenkins via cmd with the settings from the jenkins service. By the way i use Windows 7 i haven´t mentioned that. If you run Jenkins as a windwos service all Configrations, Jobs and Plugins are installed directly in the %JENKINS_HOME% Dir (e.g "C:\ProgramFiles\