Re: Violations Plugin and JSlint

2013-01-17 Thread TeMc
I use: * jshint (not jslint) * the --checkstyle-reporter it features * written to an xml file * read by publisher "Violations" in the Jenkins job as type "checkstyle" -- Tem On Jan 17, 2013, at 11:20 AM, Ulli Hafner wrote: > Just to make sure that we are talking about the same plug-ins: > Are

Re: Slow Jenkins response to http after upgrade

2013-01-17 Thread Pawel Jasinski
one more detail. If I look at the Firefox Web Console I can see individual files out of static which report excessive response time: [20:01:19.678] GET http://whatever:8080/static/1d388f53/scripts/yui/element/element-min.js[HTTP/1.1 304 Not Modified 8062ms] --pawel On Thu, Jan 17, 2013 at 9:51

thinbackup loading of plugin failed

2013-01-17 Thread zakyn
Hello, I would like to use thinbackup plugin but I obtained this error. Could you please help me? Thank you. Vladimir Jan 17, 2013 7:52:47 PM jenkins.InitReactorRunner$1 onTaskFailed SEVERE: Failed Loading plugin thinBackup hudson.util.IOException2: Failed to initialize at hudson.ClassicPlu

How to hide Disk usage plugin link at the left menu for anonymous users?

2013-01-17 Thread zakyn
Hello, I would like to ask you if you could give me any hint how to hide the link of Disk usage plugin link for anonymous users? Thank you. Vladimir

RE: Slow Jenkins response to http after upgrade

2013-01-17 Thread Richard J Otter
Memory was way below max for us too. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Scott Evans Sent: Thursday, January 17, 2013 9:39 AM To: jenkinsci-users@googlegroups.com Subject: Re: Slow Jenkins response to http after upgrade Check to m

Re: Slow Jenkins response to http after upgrade

2013-01-17 Thread Pawel Jasinski
I have enabled jmx console on my jenkins instance (for quite a while). The memory usage looks fine: Heap: Size: 886,218,752 B Used: 344,640,992 B Max: 1,601,896,448 B Threads, as far as I can tell, are ok: Live threads: 145 Daemon threads: 111 --pawel On Thu, Jan 17, 2013 at 6:39 PM, Scott Eva

Re: Slow Jenkins response to http after upgrade

2013-01-17 Thread Pawel Jasinski
my problem is back. It was not related to plugin. --pawel On Thursday, January 17, 2013 10:22:13 AM UTC+1, Pawel Jasinski wrote: > > hi, > > I am in the middle of similar exercise. 1.480.1 on windows 7-64. > My symptoms matched description here: > > http://jenkins.361315.n4.nabble.com/JIRA-JENKIN

Re: Slow Jenkins response to http after upgrade

2013-01-17 Thread Scott Evans
Check to make sure your java memory settings didn't get set too low during the upgrade, as we had issues with slow reponses at times which cleared up once we configured the Jenkins java process to have more memory available than the default. I believe this setting can be configured in jenkins.xml.

Re: Slow Jenkins response to http after upgrade

2013-01-17 Thread Richard J
We also have the same scenario- upgrade from last LTS to 1.480.1 on windows 7-64. In the last 3 weeks since the upgrade, the Jenkins server has three times "hung" in terms of its response to web browers. The first time, the server responded to browser after 30 second delays,and started to r

Re: run wsadmin from a remote webspehre

2013-01-17 Thread simo
Thanks for the response. But I don’t know how can I do to install this thin client in my Jenkins host pc. I copied two jars into my job, and from Jenkins system configuration I do this:

Re: run wsadmin from a remote webspehre

2013-01-17 Thread Andy Van Den Heuvel
Simo, WebSphere Application Server has an Administration Thin Client that you need to install on the jenkins host pc. Since this is proprietary software, it cannot be included in the plugin. As a sidenode, I would suggest to write your script in jython, because jacl scripts are deprecated On

run wsadmin from a remote webspehre

2013-01-17 Thread simo
Hello everybody, I have a problem with the plug-in “WAS builder plug-in”. My goal is to create jacl script from a Jenkins job to deploy an “ear” in a remote Websphere, for that, I installed “WAS builder plugin” and I configured

Re: Jelly script, for email

2013-01-17 Thread japinder gill
i need exactly this ${code here to read HTML file}, code for reading the file On Thursday, January 17, 2013 5:59:44 PM UTC+5:30, slide wrote: > > Can you post what you tried from Jelly? Something like the following > _should_ work. > > > ${seleniumFileHtml} > > The other option would be to at

Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread nicolas de loof
use artifact fingerprints to copy from the previous job 2013/1/17 Åsmund Østvold > From the top of job output of test1 is: > > Started by build flow buildFlow#48 > > Not buildBinaries. Did I misunderstand you? > > So my question is who to communicate what build buildBinaries jobs that > finished

Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread Åsmund Østvold
>From the top of job output of test1 is: Started by build flow buildFlow#48 Not buildBinaries. Did I misunderstand you? So my question is who to communicate what build buildBinaries jobs that finished and how to communicate this to test[1,2]. I agree with you that I need to use copy artifact plu

Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread nicolas de loof
just use the copy-artifact plugin to copy from upstream build / pass fingerprints as you would do without build flow to orchestrate jobs 2013/1/17 Åsmund Østvold > I am investigating the build flow plugin and have hit a issue I am not > able to solve. What I want to able to copy artifacts from

copy aritfacts between builds with build flow plugin

2013-01-17 Thread Åsmund Østvold
I am investigating the build flow plugin and have hit a issue I am not able to solve. What I want to able to copy artifacts from build job to test jobs: buildJob = build("buildBinaries") parallel( { build("test1") }, { build("test2") } ) All projects need to be able to run concurrently(

Re: Synchronising shell scripts between slave / master

2013-01-17 Thread Guillaume Membré
On Wed, Jan 16, 2013 at 3:00 PM, Les Mikesell wrote: > On Wed, Jan 16, 2013 at 3:25 AM, Guillaume Membré wrote: >> Hello, >> >> first of all, thanks a lot for the work you have done on jenkins, it is a >> fantastic piece of software ! >> >> I'm using jenkins 1.489 with 2 slaves. Many of my jobs r

How to change build status to success?

2013-01-17 Thread Pawel
Hi, I'd like to set the build to specific status, based on specific criteria (number of failures in JUnit result file). I have tried using the Groovy postbuild plugin with: manager.buildSuccess(); But it doesn't work - I have even found unresolved JIRA with no progress recently on it: https:/

Re: Jelly script, for email

2013-01-17 Thread Slide
Can you post what you tried from Jelly? Something like the following _should_ work. ${seleniumFileHtml} The other option would be to attach the selenium report. I don't have any Groovy examples handy, but its very quick to pick up. On Wed, Jan 16, 2013 at 11:28 PM, japinder gill wrote: > th

working with fingerprints from the REST api

2013-01-17 Thread Chris Withers
Hi All, How would I interrogate a Jenkins instant with a fingerprint using the REST api in order to find what jobs have processed the artifact the fingerprint belongs to, and that all the tests have passed in jobs that have processed the artifact. Also, how can I compute a fingerprint of a t

Re: Violations Plugin and JSlint

2013-01-17 Thread Ulli Hafner
Just to make sure that we are talking about the same plug-ins: Are you using the jslint and checkstyle plug-in? Or are you using the violations plug-in? My comments make only sense if you use the jslint plugin and then the checkstyle plugin;-) Ulli Am 17.01.2013 um 02:49 schrieb TeMc : > > O

File parameter without passing to MSBuild

2013-01-17 Thread Baruch Burstein
I need to upload a file as a file parameter, put don't want it passed to MSBuild. I need the file in place to run the tests, but it is breaking my build with the following error: MSBUILD : error MSB1006: Property is not valid. I don't need it passed to the MSBuild. How do I set this?

Slow Jenkins response to http after upgrade

2013-01-17 Thread Yitzhak Zuriel
We recently upgraded our Jenkins CI servers to the latest LTS version (4.480.1 -- before this we were using version 4.447.2) After this upgrade, we found that on our busiest servers (especially on a master of 8 slaves; all run on Windows Server 2008 r2) that the http response becomes very slow

Clean up console log files

2013-01-17 Thread hudsonuser4
Hello, I noticed that console log files can be pretty large. Is it possible to delete them for custom or stable builds as part of a postbuild step or custom job?