Hi,
- Don't use IE8 browser
- Disable unused plugins
Regards,
@kuhcrow
On Mar 2, 2:22 pm, Didier Durand wrote:
> 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,
> >
Thanks for all replies I updated my Jenkins lunch script like this:
export MAVEN_OPTS="-Djava.awt.headless=true -XX:-UseGCOverheadLimit -Xms1280m
-Xmx1280m -XX:NewSize=128m -XX:MaxPermSize=512m"
nohup java -Xms1024m -Xmx2048m -XX:MaxPermSize=512M -XX:+UseParallelOldGC
-XX:ParallelGCThreads=4 -
Hello
I'm starting to have a java heap error when parsing the junit tests.
I have a bunch of 3000 tests that might have some long logs (the total size
of junit files is around 200 Mb), but I hope jenkins is able to handle
this).
How can I increase the HEAP size of jenkins ? Or is there a way to f
oops... forget => Thank you very much for your support ;)
-
Gaetan
2012/3/2 Gaetan
> Hello
>
> I'm starting to have a java heap error when parsing the junit tests.
> I have a bunch of 3000 tests that might have some long logs (the total
> size of junit files is around 200 Mb), but I hope
http://www.ichineseflashcards.com will help you learn Chinese
(Mandarin) faster by using flashcards with pictures, thanks
I'm creating a maven job and for some reason an entry in MAVEN_OPTS gets
automatically added...
-Dm3plugin.lib=/home/jenkins/workspace/Util-Java/2.0.2 appears in my
MAVEN_OPTS entry. (Util-Java is the name of the job).
This directory does not exist and the build thus fails.
I'm trying to use m
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
If this doesn't fit the bill, you can always have a job aggregate
several other jobs success/failure(s) and mail based on those results.
On Mar 1, 7:40 pm, Brad wrote:
> I just looked into the join plugin again and it appears to be what I
> want I wasn't expecting the job to finish right away
To compare the Jenkins and local environments run from a shell
Jenkins job
#!/bin/bash -x
env | sort > jenkins_env.txt
and archive the file jenkins_env.txt
Locally from a shell on the slave
env | sort > manual_env.txt
Then save these files to a common place and compare with
your preferred com
Hello all,
I've looked around for a bit for something to do what I want, and before I
spend a whole lot of time hacking around, I thought I would ask. I would like
to be able to have one Jenkins master start a build on another Jenkins master.
Just like the existing "Build other projects" func
Jim-
I remember there being a plugin, a while back, which would allow one Jenkins
instance to invoke jobs directly upon another; however, it required that the
job be defined on both servers with the same name. I currently run several
Jenkins instances (different dev centers), and, for the most
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
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
Greetings,
On Fri, Mar 2, 2012 at 11:37 AM, Didier Durand wrote:
> So, I have to make sure that this job is running absolutely alone.
https://wiki.jenkins-ci.org/display/JENKINS/Heavy+Job+Plugin
https://wiki.jenkins-ci.org/display/JENKINS/Locks+and+Latches+plugin
-Jesse
--
There are 10 types
I've not used it, but
https://wiki.jenkins-ci.org/display/JENKINS/Exclusive+Execution+Plugin matches
your use case exactly.
> -Original Message-
> From: jenkinsci-users@googlegroups.com
> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Didier
> Durand
> Sent: 02 March 2012 16:37
Aaron,
Thanks for the feedback. I was afraid it would boil down to something like
that. I was hoping for a solution which a novice could use pretty easily. One
of the great things of administering Jenkins is that it's pretty easy to set up
and get going. I looked for a plugin you suggested
(no answer to this first time round, so reposting... hope someone can help!)
Hi All,
I have one job which does an svn checkout, compile and build
distribution. This distribution is passed down to more jobs.
In those jobs, I use the "Editable Email Notification" section to send
notification o
On Mar 2, 4:44 am, Didier Durand wrote:
> 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.
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
Hi All,
I don't know who to email about this, so emailing here in the hope that
the right person is listening...
I can't remember by jenkins-ci.org password, I tried the one(s) I
thought it might have been, and got into the "hey, you need to enter a
captcha" process.
Fine, I gave up and re
If you want to save memory, store the logs as files that you archive
as build artifacts. Storing large logs inline in the junit xml files
will cost you a lot in memory. But if you have the memory, go for it.
Sun JVM option -XmxNNG sets the heap to NN gigabytes. Run "java -X" to
see what you can tu
On 28/02/2012 00:57, docbop wrote:
I am trying to do same thing and having a lot of config issues and wondered
it others got this working.
yes, see http://jenkins.simplistix.co.uk
From outside Jenkins everything is fine with all accounts except under
jenkins
Please show an example of exact
You might get what you want using the Build Promotion plugin.
cheers,
Chris
On 02/03/2012 00:40, Brad wrote:
I just looked into the join plugin again and it appears to be what I
want I wasn't expecting the job to finish right away like it
did I thought it would wait until the other job
Hi,
I am wondering if there is perhaps a slight anomaly in the
conceptualizations of the Job Queue and Triggered Jobs. Bear with me on
this long email...
The Job Queue is a global entity in that a job is placed on the one and
only one queue. The Triggers, on the other hand, are handled per job, s
So helpful . . . sort of . . .
So at first I could not find what you suggest . . . but after nosing around,
I did find that if as an execution step of a job I use Groovy, I can in fact
adjust the class path there for that job step.
Useful for the future, thank you.
However, I'm running under scr
Hi Jess & Matt,
Thanks a lot for your quick answers !
I'll try the Exclusive Execution Plugin first as it is my exact use
case. Then, the others if needed.
regards
didier
On Mar 2, 5:41 pm, wrote:
> I've not used it,
> buthttps://wiki.jenkins-ci.org/display/JENKINS/Exclusive+Execution+Plugi
I've seen several post about increasing Jenkins memory with Jenkins Java
Options . . . and also found the values in the jenkins.xml file
which seem to be similar.
What I have NOT found is documentation on any of these . . .
What exactly can go in ?
This is always glibly shown like "oh
We do this with wget in a shell step
$> wget http://someserver.com/job/jobA/build?delay=0sec
…just the same way as if you would trigger it from a command line.
If you use the conditional-buildstep-plugin you can wrap the execution into
conditions too.
/Domi
On 02.03.2012, at 16:52, Jim McCaske
Thats correct.
/Domi
On 03.03.2012, at 06:30, Frank Merrow wrote:
> So helpful . . . sort of . . .
>
> So at first I could not find what you suggest . . . but after nosing around,
> I did find that if as an execution step of a job I use Groovy, I can in fact
> adjust the class path there for tha
29 matches
Mail list logo