Re: fonts in junit trend graphs are unreadable

2012-04-20 Thread Didier Durand
Hello, You should read https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+got+java.awt.headless+problem it may help you solve your issue regards didier Le lundi 16 avril 2012 22:57:20 UTC+2, Alex Dean a écrit : > > I've just set up Jenkins to run PHPUnit tests. Everything is working > fine

Re: ERR_CONTENT_DECODING_FAILED when try to access job configuration pages

2012-04-16 Thread Didier Durand
Hi Jason, I had this same problem with 1.458 on CentOS (due to the gzip page compression introduced then) see https://groups.google.com/forum/?fromgroups#!searchin/jenkinsci-users/cobertura/jenkinsci-users/OJxWOXpSsMs/ReNTRVSFkFAJ I upgraded this morning to 1.460 and the problem disappeared:

Gzip compression of 1.458 in conflict with Cobertura plugin ?

2012-04-11 Thread Didier Durand
Hi everybody, It seems that the gzip compression of pages introduced in 1.458 (see http://blog.cloudbees.com/2012/04/improvements-in-jenkins-you-dont-see.html) is in conflict with cobertura plugin: I can no longer access the nice graphical code coverage results produced by the Cobertura plugin

Re: svn dilemna

2012-03-29 Thread Didier Durand
Hi Shanz, We do also archive executable (jars) in jenkins for various reasons. To avoid the out of synch issue that you mention, we create a tagged (i.e named) backup of the sources via a "svn copy" in the subdir /tags of our svn. Then, we check out the source from there, compile it and commi

Re: Simple newbie question on how Post-build actions work...

2012-03-29 Thread Didier Durand
Hi Richard, Generally speaking, you should never check-in results of tools produced elsewhere for use on Jenkins. You should rather implement those tools on your Jenkins server, run them there to obtain the results that you need in further steps of your Jenkins jobs. regards didier Le jeudi

Trailing WInstone error message on job configure page

2012-03-27 Thread Didier Durand
Hello, Since 1.456 (also in 1.457), I get the following error message from winstone in the Job configuration page for each job after current configuration is displayed Status Code: nullException: Stacktrace: (none) -- *Generated by Winstone Servlet Engine v0.9.1

Re: Switch JDK between build steps

2012-03-26 Thread Didier Durand
Hi, To my knowledge Jenkins launches a separate jvm for each step you configure in the "Build" section of your job configuration So, I would try to alternate your build steps under Ant with shell build steps and use these shell steps to switch the jvm/jre as you want (via for example. the lin

Re: Change svn check-out strategy for automatic/manuel build

2012-03-25 Thread Didier Durand
Hi Chitech, Agreed with Jan: what you propose is a lot of work compared to my solution achieved in a few clicks... Up to you regards didier Le samedi 24 mars 2012 11:09:34 UTC+1, chitech a écrit : > > We found a way around it. > > 1.0 Make a cron job to modify the config.xml to Clean workspac

Re: Change svn check-out strategy for automatic/manuel build

2012-03-22 Thread Didier Durand
Hi, I guess that you have to create 2 jobs: - daily: with trigger on each change and simple svn update - nightly: with time scheduling and and fresh svn checkout That means that you'll have a separate workspace for each of those jobs regards didier Le jeudi 22 mars 2012 13:34:16 UTC+1,

Re: Jenkins vs. Hudson

2012-03-19 Thread Didier Durand
Hi, A recent ppt by Cloudbees clearly demonstrated (via manay figures) that the community has switched from Hudson to Jenkins. http://www.cloudbees.com/sites/default/files/whitepapers/Jenkins_Safe_Investment_Final.pdf -> many figures there. http://blog.cloudbees.com/2011/12/jenkins-community-

Re: How to make variables available to all build steps/action in a job

2012-03-19 Thread Didier Durand
Hi, You can go into Jenkins Configure > Global Properties & there set env variables that are available to all jobs. regards didier Le lundi 19 mars 2012 09:59:09 UTC+1, Jan Seidel a écrit : > > Hi Shanz, > > *uhm* mkey... I am not familiar with python but I will give it a try. > Seems to be

Re: Jenkins - getting slower and slower

2012-03-18 Thread Didier Durand
Hi, To disable plugin via the HDD, you can have to delete them in $JENKINS_HOME/plugins (bot .hpi file and directory with same name regards didier Le dimanche 18 mars 2012 22:16:44 UTC+1, zakyn a écrit : > > Hello, > > I have problem that Jenkins is getting slower and slower and it is not >

Re: Database Builds to different targets

2012-03-18 Thread Didier Durand
Hello, You should have the common part of your build as a 1st job abd then apply patches as downstream jobs of the 1st one. regards didier Le dimanche 18 mars 2012 02:44:34 UTC+1, Craigbert a écrit : > > Hello All, > > I am working on a project where we have multiple patches that need to > b

Re: Archive only X month old builds

2012-03-16 Thread Didier Durand
Hi, In each job configuration, you have "Discard old builds" (among the 1st checkmarks) where you select either the number of jobs or how many days you want to archive. regards didier Le vendredi 16 mars 2012 13:44:49 UTC+1, zakyn a écrit : > > Hello, > > I am looking for the plugin which a

Re: Instable builds related to low memory

2012-03-09 Thread Didier Durand
Hi, Did you try to try Java heap size via the "Java options" (advanced section) of the step config parameters using Xnx and Xms ? That should solve your issue. [I dodn't think the size of physical real memory really matters for completion: even if you allocate more heap than physical memory, y

Re: Jenkins Hung

2012-03-08 Thread Didier Durand
Hi, you can access the system log via Jenkins Homepage > Manage Jenkins > System log regards didier Le mercredi 7 mars 2012 20:24:16 UTC+1, John Hinnegan a écrit : > > Jenkins hung on me again. It just stops responding to requests. I wish it > would just die so it would be restarted. > > Anyw

Re: Any way to force a triggered job to use the same machine?

2012-03-08 Thread Didier Durand
Hi, It seems to me that this plugin may allow you to achieve what you need regards didier Le jeudi 8 mars 2012 17:27:37 UTC+1, FNX a écrit : > > >I have a feeling I've posted this question before but not hit a > resolution. > >We generally have split our jobs into 2: one job does the

Re: Cannot build any jobs: "Pending - Waiting for next available executor"

2012-03-07 Thread Didier Durand
Hi, You may want to relate the number of executors to the number of cores on your jenkins server if it is more or less dedicated to Jenkins Soon you will also realize that you need to define priorities to sort out jobs in the queue: then this plugin gets useful: http://wiki.hudson-ci.org/display/

Re: Maintain Jobs in SCM

2012-03-06 Thread Didier Durand
12 at 11:18 PM, Didier Durand > wrote: > > > You can insert env variables in your paths on Jenkins SCM section in > > job configuration > > > So, what you can do to avoid recreating jobs for branches is to put a > > variable for the path of the branch and set

Re: Jenkins dying regularly -- how to diagnose

2012-03-06 Thread Didier Durand
Hi, I would also suggest to use the Monitoring plugin to easily diagnose memory issues in your jvm At https://wiki.jenkins-ci.org/display/JENKINS/Monitoring regards didier On Mar 7, 12:27 am, Sami Tikka wrote: > Also, check the system log for exceptions. You have probably run out of > memory

Re: Maintain Jobs in SCM

2012-03-06 Thread Didier Durand
Hi, You can insert env variables in your paths on Jenkins SCM section in job configuration So, what you can do to avoid recreating jobs for branches is to put a variable for the path of the branch and set the value of the variable just before lanching build step ot the job. [I use this technique

Re: Having a given job running absolutely alone on my jenkins: how ?

2012-03-02 Thread Didier Durand
/Exclusive+Execution+Pluginmatches > your use case exactly. > > > > > > > > > > > -Original Message- > > From: jenkinsci-users@googlegroups.com > > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Didier > > Durand > > Sent: 0

Re: Handing off builds between Jenkins masters

2012-03-02 Thread Didier Durand
Hi, I think this plugin can help https://wiki.jenkins-ci.org/display/JENKINS/Job+Import+Plugin to list what's available on the other instance to be launched I can also provide some Java code to do remote job launching with authentication when needed. Just let me know By combining the 2, you sho

Having a given job running absolutely alone on my jenkins: how ?

2012-03-02 Thread Didier Durand
Hello, During night, I want to launch a jenkins job that makes all backups for all the ressources (database, svn, etc) that all other jenkins jobs use. So, I have to make sure that this job is running absolutely alone. I already have tenths of jobs configured and I don't want to change somet

Having only one given project on my Jenkins instance: how?

2012-03-02 Thread Didier Durand
Hello, During night, I want to launch a jenkins job that makes all backups for all the ressources (database, svn, etc) that all other jenkins jobs use. So, I have to make sure that this job is running absolutely alone. I already have tenths of jobs configured and I don't want to change somet

Re: OutOfMemory on test import

2012-03-02 Thread Didier Durand
Hi, Here it seems that you need only to increase memory parameters for your testing job alone not Jenkins as whole: you do that in the "java options" line of the build step config of your job: you say -Xms xxx - Ymx yyy with appropriate values for X & Y. regards didier to achieve that you have

Re: Slow job configuration launch

2012-03-01 Thread Didier Durand
Hi, Do you keep a long history of builds for your jobs ? It may help if you keep it smaller. regards didier On Mar 2, 6:12 am, tah wrote: > Hello, >         My Jenkins instance is generally fast, but launching any job > configuration page is extremely slow. To be clear: Log in to Jenkins, > ni

Re: Facing problem of “java.lang.OutOfMemoryError: PermGen space” in Jenkins

2012-03-01 Thread Didier Durand
ewSize=128m -XX:MaxPermSize=512m" > > > > > > > > -Original Message- > From: Didier Durand > To: Jenkins Users > Sent: Thu, Mar 1, 2012 12:45 pm > Subject: Re: Facing problem of “java.lang.OutOfMemoryError: PermGen space” in > Jenkins > &

Re: Facing problem of “java.lang.OutOfMemoryError: PermGen space” in Jenkins

2012-02-29 Thread Didier Durand
Hi, Did you try to increase the PermGen space in the launch shell script of jenkins. If you are like me on Ubuntu it's in /etc/default in file jenkins : line JAVA_ARGS. regards didier On Mar 1, 8:09 am, jhoomshar...@netscape.net wrote: > Hi All, > I am facing problem of “java.lang.OutOfMemoryE

Re: excessive job workspaces created

2012-02-28 Thread Didier Durand
Hi, Sorry, I didn't re-read your initial post: you're in master-slave So, your issue is probably related to fix of issue 12704 mentionned above. regards didier On Feb 29, 8:19 am, Didier Durand wrote: > Hi Aaron, > > Are you in a master/slave config: according > to

Re: excessive job workspaces created

2012-02-28 Thread Didier Durand
Hi Aaron, Are you in a master/slave config: according to https://issues.jenkins-ci.org/browse/JENKINS-12704, it seems that jenkins code was recently changed to create "more" @ workspaces. Maybe, too much regards didier On Feb 29, 7:10 am, Aaron Kushner wrote: > On Feb 28, 9:

Re: excessive job workspaces created

2012-02-28 Thread Didier Durand
HI, Yes, you've probably allowed parallel jo execution in the "Advanced" section of job configuration and many of your job did execute at the same time: to my knowledege and experience, the @n appears when parallel execution is allowed. regards didier On Feb 29, 1:10 am, Aaron Kushner wrote:

Re: Port issue

2012-02-27 Thread Didier Durand
Hi, When you say that "port 8080 gets down" does it mean that the jenkins server is down: i.e do you find it via ps -ef on linux console ? Other question; is your jenkins running natively (suning embedded Winstone) or within a container (tomcat or other)? regards didier On Feb 27, 9:19 am, Su

Re: Building a JAR File

2012-02-26 Thread Didier Durand
Agreed with David Just reuse your usual tools in your jenkins script: for example, if you use Ant, there is a very simple Ant task to build jar Look it up at : http://ant.apache.org/manual/Tasks/jar.html regards didier On Feb 26, 9:24 pm, David Weintraub wrote: > On Sun, Feb 26, 2012 at 8:09

Re: anonymous disables jobs

2012-02-24 Thread Didier Durand
Hi, Was the number of executors changed in the Jenkins config to 0 at some point ? regards didier On Feb 24, 5:32 pm, noa wrote: > hi, > > I have a promblem with my jenkins server, some of my clients > complained about their jobs being disabled and after looking into it I > saw the jobs are be

Re: Jenkins (JVM) crashes after few minutes after start

2012-02-24 Thread Didier Durand
Hi, Do you have the Java stack trace of the crash? regards didier On Feb 24, 4:04 pm, Domen Kožar wrote: > I have been fighting with this one for a month, would be really > pleased if someone can give tips or request more data: > > Crosspost:http://serverfault.com/questions/355516/jenkins-jvm-

Re: JMS trigger

2012-02-23 Thread Didier Durand
Hi, If you go to the plugins page and check the Build Triggers section, you'll see that many plugins have the same intent as yours: FileFound plugin, FST plugin, IRC plugin, URL change plugin. So, you should definitely do it. Btw, the plugins mentionned probably provide good source code skeleton

Re: Using svn export instead of svn checkout

2012-02-23 Thread Didier Durand
r the export option as the default or for getting rid > of the checkout, I am just asking to add it as an alternative -- just > like the other options that are already in the list! > > Roland > > On 23.02.2012 13:37, Didier Durand wrote: > > > > > > > > >

Re: Using svn export instead of svn checkout

2012-02-23 Thread Didier Durand
Hi, Even if checkout was possible, I don't think that it is a good idea from a perf standpoint: if you export a file, it gets out of svn control and the changes cannot be tracked. So, next time your run the job, you have to do a full export again even if the file didn't change inbetween: can take

Re: non-recursively checkout out an svn tree

2012-02-21 Thread Didier Durand
Hi, Is it possible for you to create a dir source/Makedir and move Makefile into it ? At least can you create Makedir and make a symlink to makefile into it. Then, you configure 2 checkout location in you jenkins job config: 1 for source/cpp and 1 for source/Makedir and you've reached your object

Re: constant building from svn - no change

2012-02-17 Thread Didier Durand
Hi, Can you tell us what the very 1st line of the consol of a build: it usually gives the reason for starting the build . regards didier On 17 fév, 06:03, wrote: > Hi Guys > > I have a multi repo project, both checkouts are from svn servers, and I have > a 'poll scm' every 15 mins to build it

Re: jenkins svn update

2012-02-16 Thread Didier Durand
e it in my enviornment variable JAVA_OPTS,the Xmx is 1024m, Xms > is 128m, it seems like no effect. > BTW,my source code is too much. > > On 2月16日, 下午1时20分, Didier Durand wrote: > > > > > > > > > Hi, > > > Maybe not enough memory for the JVM running the jo

Re: Job dependencies

2012-02-15 Thread Didier Durand
Hi, You could create a job C that is triggered by the same events as B C will only do 1 thing: have A a downstream job and A will have B as downstream job So, when C triggers (based on the triggers that you have chosen) it launches A. When A finishes, it launches B That's 1 way: maybe will peop

Re: jenkins svn update

2012-02-15 Thread Didier Durand
Hi, Maybe not enough memory for the JVM running the job to handle the svn protocol efficiently Try to increase the -Xmx -Xms on the Java Options of your job config. I would be interested to read about your results with this proposal or any other. regards didier On Feb 16, 6:15 am, fiona

Re: Edit a group of jobs configurations

2012-02-13 Thread Didier Durand
Hi, This plugin is intended to change many jobs at once: https://wiki.jenkins-ci.org/display/JENKINS/Configuration+Slicing+Plugin regards didier On Feb 13, 3:05 pm, Alper wrote: > Hi all. > Let say I have a group of jobs which have similar configurations. When > I want to change something > do

Re: Hiding job from unauthenticated users

2012-02-13 Thread Didier Durand
Hi, You should use the matrix-based security of jenkins: You can hide jobs to unauthenticated users in the Jobs section of configuration But, it hides all jobs at once. Do you need something more granular ? (i.e per job) regards didier On Feb 13, 10:36 am, Andrey Pohilko wrote: > Please, help

Re: Block Build when downstream project is *queued*

2012-02-10 Thread Didier Durand
isplay/JENKINS/Proposed+Plugin+Deprecation > > The "Throttle Concurrent Builds Plugin" also only allows to control > the executor nodes. I would need to have control about the waiting > queue... > > I have played with priority sorter plugin but it did not work reliably for me

Re: Unable to add build step to freestyle job

2012-02-10 Thread Didier Durand
Hi, What browser do you use to access Jenkins: there are some knowns issues with IE that does not handle properly some javascript in Jenkins pages. Try with Firefox and let us know. regards didier On Feb 10, 9:58 am, Dünnebeil Gerhard wrote: > Hello, > > I tried to add a new "free-style softw

Re: Block Build when downstream project is *queued*

2012-02-09 Thread Didier Durand
Hi, Lock & Latch plugin should help you achieve what you need: https://wiki.jenkins-ci.org/display/JENKINS/Locks+and+Latches+plugin regards didier On Feb 9, 3:42 pm, Dirk Kuypers wrote: > Hi, > > is it possible to block a build as long as downstream projects are > queued, but not running? > >

Re: Upstream/Downsteam configuration

2012-02-09 Thread Didier Durand
Hi, Just go in the config of the upstream job and update the field Add Build Step > Build other projects > projects to build then choose your downstrean projects to launch and decide when to build them (always, only on success, etc.) regards didier On Feb 9, 6:09 pm, Sebastian Otaegui wrote:

Re: Subversion does not show up under Source Code Management in the configure job page

2012-02-08 Thread Didier Durand
Hi, Subversion plugin is part of the base install There is an issue prior to 1.450 (see changelog) when you update the pre-installed version of the svn plugin with the last version 1.37) of the plugin. So, you should upgrade to 1.450 (or even better do a fresh start of 1.450 after deleting curr

Re: Failed to define svn credenials

2012-02-07 Thread Didier Durand
Hi, Did you try 1st to do a checkout out of Jenkins with a product like TortoiseSVN on WIndows or RabbitVCS on Linux ? This should help you to check if your svn url and credentials are correct more easily then you can come back to Jenkins regards didier On Feb 6, 7:30 pm, Nicky Ramone wrote:

Re: Console Log RegEx on Build Page

2012-02-07 Thread Didier Durand
Hi, This plugin https://wiki.jenkins-ci.org/display/JENKINS/DocLinks+Plugin should help regards didier On Feb 2, 12:18 am, LexManos wrote: > I am looking for a way to place custom links on the build pages in jenkins > based on the build log. > My build system has a special file publisher that

Re: Source code metrics plugin ?

2012-02-06 Thread Didier Durand
Hi, I personally use SLOCCOUNT: if you work in an environment with multiple languages, it's particularly well suited to get measures in such an heterogeneous environment. regards didier On Feb 6, 1:49 pm, Jan Goyvaerts wrote: > AHA ! NOW they're hiding ! :-) > > Error formatting macro: conten

Re: Jenkins running server out of memory

2012-02-03 Thread Didier Durand
Hi, You should install the Monitoring plugin: https://wiki.jenkins-ci.org/display/JENKINS/Monitoring it will get you lots of info about your jvm running jenkins: when you have them, you can post back it here with the elements in hand (how many threads, etc.) It will then be much easier for peop