AW: Is is possible to get Rake, Ruby or Rspec output in real time

2013-05-16 Thread Petriconi, Felix
Hi David, it already helped me to put the following statement at the top of the rake file: $stdout.sync = $stderr.sync = true Regards, Felix Von: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] Im Auftrag von David Williams Gesendet: Donnerstag, 16. Mai 2013 01:24 An

Re: Strange SCM polling failure

2013-05-16 Thread Peter Major
Looks like Zen timestamp didn't handle the case of non-existent build node, see https://issues.jenkins-ci.org/browse/JENKINS-17975 for reference. On máj. 16, 07:59, Major Péter wrote: > Hi, > > I have this strange stacktrace in my SCM polling log, anyone seen > something similar? > java.lang.Null

[1.509.1 LTS] Massive performance issues

2013-05-16 Thread sbreit
Hi everyone! After updating to 1.509.1 LTS (from 1.480.3) we're facing massive performance issues. Performance was OK before, but now loading pages takes significantly longer than before. Certain jobs also have a way longer runtime than before. Sometimes, Jenkins even won't respond any more. W

Re: [1.509.1 LTS] Massive performance issues

2013-05-16 Thread Stephen Connolly
>From what I know, this is a side-effect of the new lazy loading of build data. Bad plugins force Jenkins to load all the build data. Because of lazy loading, Jenkins is able to throw away the lazy loaded data (not sure if it is or isn't because I have been too busy with other things to look at th

Distinguishing between tests run on different build configurations of same project

2013-05-16 Thread John Dexter
I use boost.test to do unit testing on a C++ project, which has two build-configurations - each configuration pulls in a different 3rd-party library and our app wraps these, so we have the same suite of tests to check both are behaving identically. This means we end up with app_A.exe and app_B.exe

Discover right for anonymous returns in error 500 - any workaround for deep links?

2013-05-16 Thread roland . gruber
Hi all, unfortunately, enabling discover right for anonymous does not work (bug 14189). Users get an error 500 with stack trace after login. :( We manage hundreds of jobs and need to run Jenkins with activated security. On the other hand we would like to provide deep links to e.g. jobs. Since

Re: Resend: Publish Over CIFS Plugin fails when used over internet

2013-05-16 Thread Richard J
Well, humor aside.. I felt certain that using the plugin option "Always transfer from master" implied that Jenkins would use its own transport protocol between the slave and the master (the WAN) and use the misnamed CIFS protocol between the master and the file share (LAN). I was hoping to g

Re: View takes 10+ seconds to load after upgrade to 1.512

2013-05-16 Thread Pete Akey
I have no AD plugin installed on my system. Thanks for the suggestion. Pete On May 15, 2013, at 10:38 PM, Pete Akey wrote: > Hi, Kenny. > > We're not using AD but who knows? Maybe the plugin is installed and active. > I will check this out tomorrow and let you know. > > Quick question, t

RE: Jenkins is extremely slow and takes 100% cpu

2013-05-16 Thread James Nord (jnord)
Your stack shows that Jenkins is trying to load all the builds looking for the last failed. By any chance do you have a lot of jobs and a lot of history in these jobs? https://issues.jenkins-ci.org/browse/JENKINS-16023 /James From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@goog

RE: Resend: Publish Over CIFS Plugin fails when used over internet

2013-05-16 Thread Alex Earl
I'm not sure there is a maintainer, I don't work on it anymore... Sent from my Windows Phone -- From: Richard J Sent: 5/16/2013 6:36 To: jenkinsci-users@googlegroups.com Subject: Re: Resend: Publish Over CIFS Plugin fails when used over internet Well, humor aside.. I

Restricting matrix-build with parameters

2013-05-16 Thread tveon
Hi, We are running a continous integration setup with a deployement job on Jenkins, which deploys the new artifacts after succesful builds. Depending on branch/tag/test-stage we deploy to one of a number of environments, which have a different number of nodes (1, 2 or 4). Since it is the same s

SVN polling is hanging

2013-05-16 Thread Markus KARG
Since few days SVN polling is hanging on my Jenkins 1.514. The polling protocol says that polling startet days ago, but there is nothing more to find in the log. This is really strange. Any ideas what to check or how to fix this? -- You received this message because you are subscribed to the

Re: Jenkins is extremely slow and takes 100% cpu

2013-05-16 Thread Christian Petry
Hi, i do not know how much is a lot of Jobs at the moment we have about 200 Jobs which keep the builds for 30 Days, but i think that there are not more than 50 kept builds per job. Many jobs have much less builds. Christian Am Donnerstag, 16. Mai 2013 15:45:22 UTC+2 schrieb James Nord (jnord

Re: GitHub Webhook to Jenkins "Cross Site Scripting"

2013-05-16 Thread spacegoose
On Wednesday, May 15, 2013 9:23:23 AM UTC-4, spacegoose wrote: > > I am trying to trigger Jenkins builds from commits to a private GitHub > repository. It only works when the the cross site scripting protection in > Jenkins is turned off. > > Is there some way I can keep the cross site scriptin

Re: Jenkins is extremely slow and takes 100% cpu

2013-05-16 Thread Christian Petry
Hi, i found a hint that jenkins has a Performance Problem since 1.506, so i downgraded to 1.505. At first it looked as if the performance got better, but it seems that the load on my machine raises constantly. Christian Am Donnerstag, 16. Mai 2013 16:42:22 UTC+2 schrieb Christian Petry: > > Hi

Re: Distinguishing between tests run on different build configurations of same project

2013-05-16 Thread lata
have two jenkins test jobs? maybe i'm missing something. On Thursday, May 16, 2013 4:44:44 PM UTC+5:30, John Dexter wrote: > > I use boost.test to do unit testing on a C++ project, which has two > build-configurations - each configuration pulls in a different 3rd-party > library and our app wra

Re: Using JELLY_SCRIPT template with email-ext shows only the literal string, not eht actual email

2013-05-16 Thread lata
ah, i didn't know that. On Wednesday, May 15, 2013 5:05:07 PM UTC+5:30, slide wrote: > > There is also a ${CHANGES} content token, but you can't use it directly in > a Jelly script, you would have to retrieve the changes yourself. > > > On Wed, May 15, 2013 at 4:24 AM, lata >wrote: > >> syntax f

Re: Using JELLY_SCRIPT template with email-ext shows only the literal string, not eht actual email

2013-05-16 Thread Slide
I would recommend using groovy templates instead of Jelly templates. I added the ability to use the content tokens in the groovy templates in 2.29. You can do something like ${CHANGES()} to use the content of the CHANGES token. It works for things with parameters as well ${ENV(var: "FOO")}. slide

Re: Distinguishing between tests run on different build configurations of same project

2013-05-16 Thread John Dexter
The thing is I want one job to automatically pick up all xml test results, not write a job for each test. I think I found a solution to change the test-suite name slightly in the CPP code based on a preprocessor var, so it appears to be a non-Jenkins problem :) On 16 May 2013 17:33, lata wrote

Re: Using JELLY_SCRIPT template with email-ext shows only the literal string, not eht actual email

2013-05-16 Thread lata
2.9 is to be read as 2.09, :-) On Wednesday, May 15, 2013 9:26:14 PM UTC+5:30, David Brossard wrote: > > I am using Jenkins 1.514 and the latest Email-ext that I see is actually > 2.29 rather than 2.9. Should I expect to see Jelly or Changes content using > any of this syntax in my Default Conte

Re: Using JELLY_SCRIPT template with email-ext shows only the literal string, not eht actual email

2013-05-16 Thread Slide
Sorry, working on 1 hour of sleep. 2.29 On Thu, May 16, 2013 at 9:50 AM, lata wrote: > 2.9 is to be read as 2.09, :-) > > On Wednesday, May 15, 2013 9:26:14 PM UTC+5:30, David Brossard wrote: > >> I am using Jenkins 1.514 and the latest Email-ext that I see is actually >> 2.29 rather than 2.9.

Re: Using JELLY_SCRIPT template with email-ext shows only the literal string, not eht actual email

2013-05-16 Thread lata
David, how does your 'Editable Email Notification' section of your job config look like? what you showed earlier is the global config. On Thursday, May 16, 2013 10:20:53 PM UTC+5:30, lata wrote: > > 2.9 is to be read as 2.09, :-) > > On Wednesday, May 15, 2013 9:26:14 PM UTC+5:30, David Brossard

Re: Using JELLY_SCRIPT template with email-ext shows only the literal string, not eht actual email

2013-05-16 Thread Slide
By the way, I was able to reproduce this issue but then determined that there were invalid characters used in the token. I updated the JIRA item [1] with what I did to get it to work. slide 1 - https://issues.jenkins-ci.org/browse/JENKINS-17969 On Thu, May 16, 2013 at 9:54 AM, lata wrote: >

Re: running multiple instances of a job from another job

2013-05-16 Thread lata
you can get the 'Parameterized Trigger Plugin' if you haven't got it already, and add multiple instances of the child job each as a 'project to build' in your parent job. i haven't used the execute concurrent builds myself but i think this should work. On Thursday, May 16, 2013 5:53:00 AM UTC+

Re: Using JELLY_SCRIPT template with email-ext shows only the literal string, not eht actual email

2013-05-16 Thread lata
oki, it has to be something like that :-) On Thursday, May 16, 2013 10:27:45 PM UTC+5:30, slide wrote: > > By the way, I was able to reproduce this issue but then determined that > there were invalid characters used in the token. I updated the JIRA item > [1] with what I did to get it to work. >

Jenkins connection problems after Jenkins restart

2013-05-16 Thread reinhard . karbas
We have several hosts set up on our Jenkins Linux server, which we connect to automatically All of these machines are Linux machines and connected via ssh in our private network Whenever I restart Jenkins and we try to run the next build job on one of the machines assigned for this task it fai

Re: Restricting matrix-build with parameters

2013-05-16 Thread cjo
Just a quick question, Which version of Jenkins are you using? As the changes for issue JENKINS-7285 are only in 1.515+ which is not yet released. so to be able to use it you will need to have compiled Jenkins from the source at the moment. Chris On Thursday, 16 May 2013 15:03:57 UTC+1, tveon

SCM changes in a file or variable

2013-05-16 Thread Rahul k a
Hi, How to get the SCM changes ( see below) in a env variable and pass it to a manifest file. ChangesSummaryActionAuthorFilenameRevisionDateCommentsabcabcabc1.1May 15, 2013 3:43:20 PM abc Please let me know. Thanks, Rahul -- You received this message because you are subscribed to t

Coverity Plugin Can't Deal with Pre-Build Step Batch Scripts, MSBuild Plugin, or Environmental Variables

2013-05-16 Thread Chris Wozny
Hey guys and gals, I've been trying to use the Coverity plugin (1.2.3) along with the MSBuild plugin (1.16) on Jenkins 1.505. The job also has a pre-build step to run some Windows batch commands. I set up ClearCase to be on my blacklist for cov-build, but no matter what I try, cov-build is alwa

Re: GitHub Webhook to Jenkins "Cross Site Scripting"

2013-05-16 Thread spacegoose
On Wednesday, May 15, 2013 9:23:23 AM UTC-4, spacegoose wrote: > > I am trying to trigger Jenkins builds from commits to a private GitHub > repository. It only works when the the cross site scripting protection in > Jenkins is turned off. > > Is there some way I can keep the cross site scriptin

Re: running multiple instances of a job from another job

2013-05-16 Thread Ashwin
I tried by adding multiple jobs in "Post-build Actions->Build other projects->Projects to build" by giving the same job name multiple times (job1,job1...)... This didn't help.. Only way i was able to trigger 2 instances was when i gave the same job name in 'Projects to build' and in 'Trigger pa

Disable comments on wiki pages?

2013-05-16 Thread Slide
Is it possible to disable comments on wiki pages? I want to have people use the mailing list as much as possible for questions about my plugin. slide -- Website: http://earl-of-code.com -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsu

Re: SVN polling is hanging

2013-05-16 Thread Markus KARG
Noticed that Jenkins complains about all SVN checks hanging in a queue and disk is rather full. Checked that using ssh. Disk is not full (33 MB free), but maybe 33 MB is too less for a SVN check? Restartet Jenkins, now all SVN checks are resumed in less than a second. Strange. Am Donnerstag, 16