Hudson JVM 64-bit?

6 messages Options
Embed this post
Permalink
Ben Caradoc-Davies

Hudson JVM 64-bit?

Reply Threaded More More options
Print post
Permalink
I can't get app-schema to build on Hudson. I had to kick it out. Is
Hudson running a 32 or 64 bit JVM?

--
Ben Caradoc-Davies <[hidden email]>
Software Engineer, CSIRO Exploration and Mining
Australian Resources Research Centre
26 Dick Perry Ave, Kensington WA 6151, Australia

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Geotools-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-devel
Justin Deoliveira

Re: Hudson JVM 64-bit?

Reply Threaded More More options
Print post
Permalink
32 bit. Indeed a hudson set up on a 64 bit JVM would be nice.

Ben Caradoc-Davies wrote:
> I can't get app-schema to build on Hudson. I had to kick it out. Is
> Hudson running a 32 or 64 bit JVM?
>


--
Justin Deoliveira
OpenGeo - http://opengeo.org
Enterprise support for open source geospatial.

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Geotools-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-devel
Ben Caradoc-Davies

Re: Hudson JVM 64-bit?

Reply Threaded More More options
Print post
Permalink
Justin Deoliveira wrote:
> 32 bit. Indeed a hudson set up on a 64 bit JVM would be nice.

Help!

I can't figure out why app-schema fails to build on Hudson. I know it
uses huge amounts of memory in a 64-bit JVM, but it seems fine on our
32-bit continuous integration engine. I think it would be very good to
get it in the build for the upcoming GeoServer 2.0_beta2.

Our buildbot:

Java:
jdk1.5.0_17.i586 on Debian Lenny (5) i386.
JAVA_OPTS=-Xmx512M -Xms64M -Dfile.encoding=UTF-8

mvn --version:
Maven version: 2.0.10
Java version: 1.5.0_17
OS name: "linux" version: "2.6.26-2-686" arch: "i386" Family: "unix"

Builds with:
mvn -Djava.awt.headless=true -Dall -Papp-schema clean install

How different is Hudson?

--
Ben Caradoc-Davies <[hidden email]>
Software Engineer, CSIRO Exploration and Mining
Australian Resources Research Centre
26 Dick Perry Ave, Kensington WA 6151, Australia

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Geotools-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-devel
Ben Caradoc-Davies

Why does Hudson use -Dtest.maxHeapSize=256M

Reply Threaded More More options
Print post
Permalink
Ben Caradoc-Davies wrote:
> I can't figure out why app-schema fails to build on Hudson.

Justin, I think I found the problem:
http://hudson.opengeo.org/hudson/job/geotools-trunk/1792/consoleText

[gt_trunk] $ /opt/actual/apache-maven-2.1.0/bin/mvn -U clean install
-Djava.awt.headless=true -Dtest.maxHeapSize=256M -Dall

Why does Hudson use -Dtest.maxHeapSize=256M when the main pom sets this
to 512M?

Can we get rid of this option?

--
Ben Caradoc-Davies <[hidden email]>
Software Engineer, CSIRO Exploration and Mining
Australian Resources Research Centre
26 Dick Perry Ave, Kensington WA 6151, Australia

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Geotools-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-devel
Justin Deoliveira

Re: Why does Hudson use -Dtest.maxHeapSize=256M

Reply Threaded More More options
Print post
Permalink
The reason this was put in there was to tame the build. Before this was
sit getting a build server able to handle the geotools build was a bit
challenging. So I fear if we remove it it will lead to a much less
stable build server. But I am willing to try it out though.

-Justin

Ben Caradoc-Davies wrote:

> Ben Caradoc-Davies wrote:
>> I can't figure out why app-schema fails to build on Hudson.
>
> Justin, I think I found the problem:
> http://hudson.opengeo.org/hudson/job/geotools-trunk/1792/consoleText
>
> [gt_trunk] $ /opt/actual/apache-maven-2.1.0/bin/mvn -U clean install
> -Djava.awt.headless=true -Dtest.maxHeapSize=256M -Dall
>
> Why does Hudson use -Dtest.maxHeapSize=256M when the main pom sets this
> to 512M?
>
> Can we get rid of this option?
>


--
Justin Deoliveira
OpenGeo - http://opengeo.org
Enterprise support for open source geospatial.

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Geotools-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-devel
Ben Caradoc-Davies

Re: Why does Hudson use -Dtest.maxHeapSize=256M

Reply Threaded More More options
Print post
Permalink
That would be great! We need to fix it for GeoServer too. In each case,
Hudson should be consistent with the pom, to avoid unpleasant surprises.
(Even building with -Dall was a nasty trap until I added this to our
builds; too easy to have a local build pass and Hudson fail.)

Justin Deoliveira wrote:

> The reason this was put in there was to tame the build. Before this was
> sit getting a build server able to handle the geotools build was a bit
> challenging. So I fear if we remove it it will lead to a much less
> stable build server. But I am willing to try it out though.
>
> -Justin
>
> Ben Caradoc-Davies wrote:
>> Ben Caradoc-Davies wrote:
>>> I can't figure out why app-schema fails to build on Hudson.
>> Justin, I think I found the problem:
>> http://hudson.opengeo.org/hudson/job/geotools-trunk/1792/consoleText
>>
>> [gt_trunk] $ /opt/actual/apache-maven-2.1.0/bin/mvn -U clean install
>> -Djava.awt.headless=true -Dtest.maxHeapSize=256M -Dall
>>
>> Why does Hudson use -Dtest.maxHeapSize=256M when the main pom sets this
>> to 512M?
>>
>> Can we get rid of this option?
>>
>
>


--
Ben Caradoc-Davies <[hidden email]>
Software Engineer, CSIRO Exploration and Mining
Australian Resources Research Centre
26 Dick Perry Ave, Kensington WA 6151, Australia

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Geotools-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-devel