I am unable to replicate this. I grabbed the source from github and used
the tag for 1.492. I ran Jenkins and was able to add items to the builder
list. I am using the same version of chrome.
On Wed, Dec 5, 2012 at 8:27 PM, Kamal Ahmed wrote:
> i am getting the following in Javascript console wh
I'm running Jenkins 1.480 using the built-in Winstone container. This runs on
Java 7, on top of Linux.
I've set up twenty one-executor nodes and put them under a label called
armada_5 (long story). I then scheduled 35 jobs to run against that label that
every night, all kicking off at the sam
whts the RAM size of your server?
may be you can chk by setting heap size.
On Thursday, December 6, 2012 7:01:05 PM UTC+5:30, Capfo wrote:
>
> hello
>
> i have a probleme with JENKINS it's a new installation when i do some test
> with a meven code source 2.2.1 and 2.2.2
>
> when i make mvn clean
You are running out of PermGen space!
try adding something like:
-Xmx1024m -XX:MaxPermSize=512m
to the Maven Project Configuration on the Manage Jenkins > Configure System page
Where:
-Xmx give the maximum heap size, and
-XX:MaxPermSize increases the size of the PermGen space
You can look up
thanks for answer :
i have 2 G Ram
for Jeff i have the same problem when i start the build in my vm (in local)
2012/12/6 Jeff Williams
> You are running out of PermGen space!
>
> try adding something like:
>
> -Xmx1024m -XX:MaxPermSize=512m
>
> to the Maven Project Configuration on the Mana
The amount of memory you have physically installed is completely different
than the amount of memory the java process is allowed to allocate & use.
Changing the settings as outlined below will give your java process more
memory to work with.
Scott
On Thu, Dec 6, 2012 at 8:34 AM, El alaoui Mohamed
how can i do it please ?
i have Ubuntu/Linaro 4.6.3-1ubuntu5)
and JAVA :
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02, mixed mode)
2012/12/6 Scott Evans
> The amount of memory you have physically installed i
i think that i must changing the jvm configuration for the memory but how
can i do it ?
2012/12/6 El alaoui Mohamed Reda
> how can i do it please ?
>
> i have Ubuntu/Linaro 4.6.3-1ubuntu5)
> and JAVA :
>
> java version "1.6.0_26"
> Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
> Java Ho
non i have the same problem also :( in jenkins and in the local Build in
the directory of project
2012/12/6 Jeff Williams
> You are running out of PermGen space!
>
> try adding something like:
>
> -Xmx1024m -XX:MaxPermSize=512m
>
> to the Maven Project Configuration on the Manage Jenkins > Confi
For your local build, write:
export MAVEN_OPTS='-Xmx1024m -XX:MaxPermSize=512m'
then run the build as normal (again, check the numbers for your environment)
For jenkins, follow my instructions below.
Jeff
On Dec 6, 2012, at 3:52 PM, El alaoui Mohamed Reda wrote:
> non i have the same problem
Hi, Joshua. When using the JNLP connection, I have found that we have
gotten cryptic messages similar to this when the connection is lost. The
JNLP connection is much more fragile than SSH, and if there is even a minor
interruption in network connection, everything might go kablooey and give
yo
Hi, Anba. Unless you had already set something up beforehand, it will not
be possible to deploy old builds. Jenkins typically generates artifacts
inside a workspace, and that same workspace is re-used every time a new
build is run. Thus the old artifacts are overwritten.
What you *could* do is
on local it's okey but in JEKINS also the same problem :(
2012/12/6 Jeff Williams
> For your local build, write:
>
> export MAVEN_OPTS='-Xmx1024m -XX:MaxPermSize=512m'
>
> then run the build as normal (again, check the numbers for your
> environment)
>
> For jenkins, follow my instructions below
Yeah, if you didn't enable "Archive the artifacts" in the old builds,
i.e. you don't have the WAR file (or whatever it is you want to deploy),
you'd have to take the approach of re-checking out the source, building
and then doing whatever deployment steps you want.
But if you *did* archive the
Steve K wrote:
>
>How do I set the "Verbose output in console" option for the Publish
>Over
>FTP Plugin?
>
>Certainly, the primary objective is to successfully use ftp to copy the
>
>files to the desired location. When the ftp fails, however, do you
>agree
>that the "Publish Over FTP Plugin" sh
I've got a situation where changes made to the source code of an iOS XCode
project are not being applied to the build application.
BUT source code changes are being picked up on, but the result of that is
not being applied to the resulting application package. Let me try to
explain further - su
I noticed this problem as well. If you run parallel build of the same job,
it doesn't work.
My workaround was to make 12 jobs (Job-Build-1 through Job-Build-12), and
it will call them in parallel.
Do you have this job configured to allow concurrent execution ?
this is not a restriction for the build-flow plugin : this one only
schedule jobs, but execution depends on jenkins build queue management and
related job configuration
2012/12/7 Glenn McElhoe
> I noticed this problem as well. If
That was it.
Nicolas you found my problam -- thanks --
I had neglected to tick the "Execute concurrent builds if necessary" box on
the jobs I wanted to have run in parallel.
On Wednesday, November 28, 2012 1:48:16 PM UTC-8, Mike Finneran wrote:
>
> When I execute the following build flow script
I'm new to Jenkins.
I have 20 libraries as separate jobs.
And 15 products, each of which depends on a subset of these libraries.
I can not understand how I obtain needed result:
Before building the product, automatically start building only those
libraries that have been changed.
Is it possible to
1. Stop running Jenkins service
2 Delete your-plugin.hpi and your-plugin.jpi from the
/plugins/ directory.
3. Restart Jenkins
Now it should work fine.
On Friday, December 7, 2012 10:28:07 AM UTC+5:30, kapila narang wrote:
>
> Today more i came & found jenkins service is not starting up & giving
You should take a look at SCM poll and build trigger when scm changes.
On Friday, December 7, 2012 11:06:08 AM UTC+5:30, Ivan Kharin wrote:
>
> I'm new to Jenkins.
> I have 20 libraries as separate jobs.
> And 15 products, each of which depends on a subset of these libraries.
> I can not understan
I want to build a custom Jenkins from source with some customizations. At
the same time i dont want to miss latest updates or bug fixes.
How could I upgrade a custom build Jenkins along with my changes too.
Thanks,
Hi,
Usually, it's done the other way round.
One possible configuration is : one Jenkins jobs for each library, one
Jenkins jobs for each product.
Then, for each library :
- Poll SCM to check if changes happened
- Build the library
- Trigger the builds of the product that relie on this library.
Fo
>
>
> One possible configuration is : one Jenkins jobs for each library, one
> Jenkins jobs for each product.
> Then, for each library :
> - Poll SCM to check if changes happened
> - Build the library
> - Trigger the builds of the product that relie on this library.
>
> For each product :
> - Ret
25 matches
Mail list logo