On 06.07.2012 17:30, Tsutomu Uchino wrote:
2012/7/6 Andre Fischer <[email protected]>:
Here is a quick update on the status of the buildbots:
- Windows7 still breaks because it attempts to use the compiler from Visual
Studio 2010 instead of the officially supported one from 2008.
- Linux 32bit is OK.
- Linux 64bit has a strange, Java related problem. With Herbert's help I
have changed the build.pl script a little bit so that we get the dmake
output even when the buildbot terminates the build process. With that we
have found out that the build most often (2 times in the last 3 days) when
building javadoc.
The cause of the hang remains unknown. Any help by Java-experts is welcome.
This is not a solution but we do not need javadoc for httpclient so
it can omit to build like as follows:
diff -u misc/build.xml misc/build/commons-httpclient-3.1/build.xml
--- misc/build.xml 2007-08-18 18:02:14.000000000 +0900
+++ misc/build/commons-httpclient-3.1/build.xml 2012-07-07
00:21:06.331136658 +0900
@@ -142,7 +142,7 @@
<!-- ========== Targets: "External" Targets ===============================
-->
- <target name="dist" depends="compile,doc"
+ <target name="dist" depends="compile"
description="Create binary distribution">
<mkdir dir="${dist.home}"/>
<copy file="LICENSE.txt" todir="${dist.home}"/>
You are right that this, in general, is not a good solution. But the
javadoc generation is unnecessary in this case, because it is not
delivered. So your change is a performance improvement :-)
I have committed it in SVN revision 1358967.
-Andre
The log file of the Linux 64bit can be found here:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/279/steps/shell_1/logs/stdio
Go to the end and find the last non-blue (shall I say black?) lines.
-Andre
-Tsutomu