Modifying the content of the Changes report, embed URL's

2014-05-09 Thread J Starbird
I've been trying to modify the Changelog.xml as I would like to have a LINK embedded in the Comments. I've tried adding the link directly as straight ahref, I've tried enclosing it in CDATA but whenever I try anything it ends up failing. Has anyone had any success with doing something like this

Re: Error when trying to configure Jenkins: hudson.plugins.git.GitException: Error performing command: git rev-parse --is-inside-work-tree

2014-05-09 Thread Curtis Kline
Oana, on my OS-X slaves Git is located in /usr/bin/git. /usr/bin is in the path (run 'echo $PATH' in a terminal window) so I don't have to enter a location in the slave config. But if you needed to, this is where you do that: https://www.evernote.com/shard/s2/sh/16f8b6f9-282f-45be-9366-f92c4d11415

Help required for Android plugin - 'use emulator snapshots'

2014-05-09 Thread Charles Chan
I have been trying to use the snapshot functionality in the Android plugin but somehow it keeps creating a new snapshot every time. $ /opt/android-sdk-linux/platform-tools/adb start-server $ /opt/android-sdk-linux/tools/emulator -snapshot-list -no-window -avd hudson_en-US_160_WVGA_android-19_x8

Re: Using Warnings plugin with Token Macro Plugin

2014-05-09 Thread Slide
I haven't used the static code analysis plugin, so I wasn't aware of those tokens, I was just saying that the Token Macro plugin itself doesn't have those tokens, if they are provided by another plugin, that's great. How is your post script run? Does it support expansion of tokens? If not, then you

Re: Using Warnings plugin with Token Macro Plugin

2014-05-09 Thread C dev
Hi Slide, I have my warnings plugin place and i thought these token plugins would extract the info from the Warnings plugin so we can use it the way we want, Also thought these tokens are currently available as per the document, (it specifies to use it with the plugin name as below) If i am wrong

Jenkins execute windows batch Path issue and redirected output

2014-05-09 Thread kenp11
We have a windows bat script that works fine in windows. When run under Jenkins we have to run the embedded program in quoted string this causes the output to only be seen till after completion of the command. When run in a real windows cmd.exe the output come out when the text is found continu

Re: Template Project Plugin : "use all the publishers from this project" is not triggering a new build.

2014-05-09 Thread Rubén Bressler Camps
I install "Any Build Step" plugin version 0.1, but problem persist. I have Jenkins 1.562 and my Maven job inherit 3 publisher from another job, a Jaccoco Coverage, Git Publish, and Sonar, but only execute Jaccoco. Someone have similar problem or solution?? El lunes, 14 de abril de 2014 07:52:48

Re: How can I make a label change be effective?

2014-05-09 Thread Daniel Beck
I commented on the issue with an explanation and how to solve your problem. On 09.05.2014, at 21:40, Christian Goetze wrote: > I just filed https://issues.jenkins-ci.org/browse/JENKINS-22954 > > It appears that if I change the node label string via groovy, that change is > not immediately eff

Re: Slaves getting hung up and Jenkins won't reconnect...

2014-05-09 Thread Larry Shatzer, Jr.
Try rolling back to 1.559, due to https://issues.jenkins-ci.org/browse/JENKINS-22734 (Also notice all the bad votes on http://jenkins-ci.org/changelog with the community ratings starting with 1.560...) On Fri, May 9, 2014 at 1:27 PM, Jeff wrote: > I'm running Jenkins 1.562 and have noticed slav

How can I make a label change be effective?

2014-05-09 Thread Christian Goetze
I just filed https://issues.jenkins-ci.org/browse/JENKINS-22954 It appears that if I change the node label string via groovy, that change is not immediately effective, even if I save the model. If I launch a subtask from the task that make the label change, that subtask will run on a node where i

Slaves getting hung up and Jenkins won't reconnect...

2014-05-09 Thread Jeff
I'm running Jenkins 1.562 and have noticed slaves going offline randomly. My slaves are all Ubuntu 12.04, 14.04 or 10.04. I can ssh into them and see the 'java -jar slave.jar' process still running. Jenkins doesn't show a Disconnect option. If I kill all java processes and even reboot the slave

Re: Perforce: merge files from a continuous directory to an integration directory...

2014-05-09 Thread Stuart Rowe
Yes, the p4 commands can just be in a windows batch command build step. I'm not sure how you're building / testing though. Keep in mind that the p4 commands I suggested will open files for integrate in the default changelist. On May 9, 2014 10:21 AM, "Mark Wilhelm" wrote: > Thanks, I'll give it

Re: How to retrive all triggered jobs information using Jenkins API

2014-05-09 Thread Yang Li
I also noticed there was a 'getBuildTriggerUpstreamProject()' API, but it's not suit my usecase either. Any help is greatly appreciated! Yang Li於 2014年5月8日星期四UTC-7上午10時15分15秒寫道: > > Hi, > > Af

Re: Dynamic Parameter question

2014-05-09 Thread Ioannis Moutsatsos
I think that all the capability that you need is available to theuno-choice plugindeveloped by the BioUno project. This plugin generates *dynamic choice selections* from a groovy script. You can use *one or more parameters* from

Re: Perforce: merge files from a continuous directory to an integration directory...

2014-05-09 Thread Mark Wilhelm
Thanks, I'll give it a go. For #4, are you putting these into a "Execute Windows batch command" build step"? On Wednesday, May 7, 2014 2:18:57 PM UTC-5, Stuart Rowe wrote: > > Try this approach (there may be typos / gotchas - it's completely untested) > > 1) Enable Perforce SCM on your integrati

Re: Error when trying to configure Jenkins: hudson.plugins.git.GitException: Error performing command: git rev-parse --is-inside-work-tree

2014-05-09 Thread Mark Waite
You either need to install command line git (msysgit) on your windows machine, or add JGit to the global Jenkins configuration and use JGit as the implementation instead of git. Mark Waite On Fri, May 9, 2014 at 9:07 AM, Oana Rusu wrote: > Hi all, > > I have a Windows server running Jenkins an

Re: Error when trying to configure Jenkins: hudson.plugins.git.GitException: Error performing command: git rev-parse --is-inside-work-tree

2014-05-09 Thread Mark Waite
Sorry, missed the reading of your log file. Your MacOS slave needs to have the location of its "git" program configured in the node configuration. Currently, Jenkins thinks that the correct git program for your MacOS slave is named "git.exe". I suspect that the correct git program for your MacOS

Re: Need help with a simple problem with MSBuild

2014-05-09 Thread Aaron Stokes
I got the build to compile. Thanks for the suggestion. I noticed that the APPDIR and LOCALAPPDIR was different from the build machine, When I changed those two values it compiled with no errors. On Monday, May 5, 2014 10:51:27 AM UTC-4, Aaron Stokes wrote: > > We are now in the process of up

Error when trying to configure Jenkins: hudson.plugins.git.GitException: Error performing command: git rev-parse --is-inside-work-tree

2014-05-09 Thread Oana Rusu
Hi all, I have a Windows server running Jenkins and on that I configured a slave for Mac, as I want to run an iOS project on it. My slave is now connected to the Windows server. I tried to add a new job that connects to my .git repository, but I get the followings errors. Can anyone help me fig

Distributing software through web sites with automatic updates

2014-05-09 Thread James Green
We are distributing Windows software via a web site that includes an automatic updates feature. Both the Windows software and the web site are built using Maven and Jenkins. At present the web site (a WAR) uses Maven to depend-on a Maven version of the Windows software (an exe). Each "customer" re

Re: URGENT: I am new for Jenkins and how to integrate soapui into jenkins.

2014-05-09 Thread Maciej Jaros
vidhya radha (2014-05-09 07:18): Hi Amit, I have tried this link but it is not trigger the build automatically when the person changes the code. You can either use Poll SCM job configuration option or use post commit hook to trigger build directly after change. Regards, Nux. -- You receiv