Jenkins and Googlecode - Urgent

2014-09-04 Thread Gaurav Lakhani
Hi, We have upgraded from Open source Jenkins LTS release 1.480.3 to LTS 1.554.2. After upgradation we are unable to prepare builds for Open source iRing application whose code is hosted in google code external repository. We are not using google code plugin. We are using subversion

Re: Jenkins and Googlecode - Urgent

2014-09-04 Thread Daniel Beck
On 04.09.2014, at 11:03, Gaurav Lakhani gaurav.l...@gmail.com wrote: If we try to checkout this code [...] through tortoise svn/command prompt, it prompts for certficate error. Then we accept the certficate it downloads few files and then it hangs. Doesn't that mean that the issue is likely

Multi-configuration projects - Run configurations in parallel

2014-09-04 Thread sebastian söderqvist
Hello Jenkins Users. i have a few multi-configuration projects. Is it possible to create a setup where only one project can build at a time, but all it's configurations run in parallel? Consider a setup like the one bellow: . ├── project1 │ ├── configuration1 building │ ├── configuration2

RE: Multi-configuration projects - Run configurations in parallel

2014-09-04 Thread Matthew.Webber
Take a look at https://wiki.jenkins-ci.org/display/JENKINS/Throttle+Concurrent+Builds+Plugin We use it, although not for multi-config projects Matthew From: sebastian söderqvist [mailto:soderqvist.sebast...@gmail.com] Sent: 04 September 2014 15:19 To: jenkinsci-users@googlegroups.com Subject:

Re: How to get the full test result url in Java

2014-09-04 Thread Manuel de la Peña
Hello everybody! I've replicated jUnit plugin behavior to access that URL: AggregatedTestResultAction testResultAction = build.getAction( AggregatedTestResultAction.class); ListChildReport childReports = testResultAction.getChildReports(); for (ChildReport report : childReports) {

Re: Multi-configuration projects - Run configurations in parallel

2014-09-04 Thread sebastian söderqvist
Thanks for your response, I have actually been trying out that plugin, but i was not able to create the setup i want. I will be honest and say that i am no Jenkins expert but i did not understand how to use the plugin and the documentation is so sparse. I gave up since i do not know if it is

Re: View Job Filter - not picking up jobs

2014-09-04 Thread Jacob Robertson
I really question your regular expression. .\\*_AppScan_* This would match ANYTHING_AppScan__ But NOT ANYTHING\\SOMETHING_AppScan_Something You're confusing ant * with regex dot star. Lookup regex syntax. On Fri, Aug 22, 2014 at

Re: Problems after fix for issue 23263 Move hudson.tasks.junit to a bundled plugin

2014-09-04 Thread Reinhard Karbas
It looks like the token macro cannot find the values anymore: ERROR: Publisher hudson.plugins.emailext.ExtendedEmailPublisher aborted due to exception java.lang.NoSuchMethodError http://stacktrace.jenkins-ci.org/search?query=java.lang.NoSuchMethodError:

Re: Problems after fix for issue 23263 Move hudson.tasks.junit to a bundled plugin

2014-09-04 Thread Slide
Not token macro, that's implemented in email-ext. Missed it when I backported the other fixes for the change in core. On Sep 4, 2014 9:23 AM, Reinhard Karbas reinhard.kar...@gmail.com wrote: It looks like the token macro cannot find the values anymore: ERROR: Publisher

Re: Problems after fix for issue 23263 Move hudson.tasks.junit to a bundled plugin

2014-09-04 Thread Reinhard Karbas
Will it be fixed in the next version of email-ext? On Wednesday, September 3, 2014 12:06:27 PM UTC-4, Reinhard Karbas wrote: After going from version 1.575 to 1.578 now it seems the values for TEST_COUNTS is not set properly in Jenkins anymore and my email does not get generated properly

Re: Problems after fix for issue 23263 Move hudson.tasks.junit to a bundled plugin

2014-09-04 Thread Slide
Actually I take that back, test counts looks good in 2.38.2. On Sep 4, 2014 10:35 AM, Reinhard Karbas reinhard.kar...@gmail.com wrote: Will it be fixed in the next version of email-ext? On Wednesday, September 3, 2014 12:06:27 PM UTC-4, Reinhard Karbas wrote: After going from version 1.575

Re: View Job Filter - not picking up jobs

2014-09-04 Thread felix
We have for each configuration an extra slave and each slave has 1 executor only. This should give you the desired behaviour. On 2014-09-04 17:27, Jacob Robertson wrote: I really question your regular expression. .\\*_AppScan_* This would match

Re: View Job Filter - not picking up jobs

2014-09-04 Thread VFloyd
Thanks Jacob, I want ANYTHING_AppScan_ANYTHING, and as originally stated it had been working. On Friday, August 22, 2014 7:09:31 AM UTC-7, VFloyd wrote: Plugin version = 1.26 Jenkins version = 1.554.1 Morning, We have jobs that have a specific identifier withing the job name. I had

How to reference an environment variable in a schedule value

2014-09-04 Thread Drew Cox
We would like to schedule builds but have the actual schedule value externalized in some way, such as read from an environment variable, or properties file (with the appropriate plugin). However the schedule value is validated and will not accept $ env var references. Can anyone suggest

Re: How to reference an environment variable in a schedule value

2014-09-04 Thread Marc MacIntyre
The scheduler has no concept of the environment that's present when the test is running, because it (the scheduler) is not running in the test's environment. To workaround, you could have a scheduler build run every 5 minutes or so that checked the environment variable and fired off a build if

Re: How to reference an environment variable in a schedule value

2014-09-04 Thread Drew Cox
Thanks Marc, but I'm not sure I understand what you mean by the word test in your response? Are you talk about unit tests? Regardless, perhaps I didn't express my need accurately. We would like to package and distribute canned job configurations (from source control actually), having various

Remote triggering over POST request doesn't bring Jenkins page loaded

2014-09-04 Thread Oleg Hayevskyy
I used to trigger my jobs from my webpage over POST request. When I was triggering the job - Jenkins page was loaded in a separate tab with the job being launched and running. But suddenly after one of the updates page stopped loading anymore, however new tab is still opened but with no content

Re: Problems after fix for issue 23263 Move hudson.tasks.junit to a bundled plugin

2014-09-04 Thread Reinhard Karbas
That's great but does not help me as of now I am still waiting for the fix for issue 23660 to be included in the next release of email-ext, supposedly 2.39, but there is no release date As several people had the same issue I was expecting that to be already part of 2.38.2, but it is not based on

Replacement for Hudson Generic Changelog Annotator?

2014-09-04 Thread Mark Waite
I want to annotate changelog entries so that certain patterns (for example, JENKINS-12345) are converted to hyperlinks. That will make it a little easier to move between the changelog and the more detailed description and history of various bug fixes. I did that before with the HGCA plugin. It

Change maven repository location

2014-09-04 Thread Gabriel Cardelli
Hello guys, i'm trying to change the default maven repository location but without success: I try add in Global MAVEN_OPTS the command: -Dmaven.repo.local=/var/www/www-users/impa/ddsimpa/public_java/repo/.jenkins/.m2 I try set the Default Settings Provider to my custom settings.xml with the

Re: Problems after fix for issue 23263 Move hudson.tasks.junit to a bundled plugin

2014-09-04 Thread Slide
The only thing fixed in 2.38.2 is for the change in core that caused exceptions. 2.39 is out a ways until I can get time to test more and do a release. Work has been killing me lately. On Sep 4, 2014 5:33 PM, Reinhard Karbas reinhard.kar...@gmail.com wrote: That's great but does not help me as