hi Sergio , Sorry for fixing it so late,now I disable emma to make build run successfully,and I will enable emma later;)
2011/11/22 Sergio Martín Morillas <smartinmoril...@gmail.com> > PDT 3.0 Hudson build is back to stable! > > https://hudson.eclipse.org/hudson/job/cbi-pdt-3.0-indigo/ > > Thanks Zhao and Roy. > > Regards. > > 2011/9/21 Robert Gründler <r.gruend...@gmail.com>: > > any news on this? > > > > > > regards > > > > -robert > > > > > > On Fri, Sep 16, 2011 at 8:11 AM, Roy Ganor <r...@zend.com> wrote: > >> > >> Hi Sergio, > >> > >> The testing fails because of a missing Emma plugins that's the reason I > >> disabled testing... > >> I contacted Eclipse webmaster to allow me to install emma again on the > >> Hudson build machine. > >> > >> Best regards, > >> Roy > >> > >> > >> -----Original Message----- > >> From: pdt-dev-boun...@eclipse.org [mailto:pdt-dev-boun...@eclipse.org] > On > >> Behalf Of Sergio Mart?n Morillas > >> Sent: Thursday, September 15, 2011 9:22 PM > >> To: PDT Developers > >> Subject: Re: [pdt-dev] Install latest nightly from hudson > >> > >> Roy, please can you enable testing again? > >> > >> org.eclipse.pdt/org.eclipse.pdt.releng/testing.properties > >> > >> +testPluginsToRun=org.eclipse.php.core.tests > >> > >> In the last build vnc connect to server, but no test has been defined: > >> > >> [exec] all: > >> [exec] [echo] testPluginDirRoot: > >> > >> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201109150911/testing/target/eclipse/dropins/pdt/eclipse/plugins > >> [exec] > >> [exec] genHtml: > >> [exec] [echo] ** Warning! No test results found in > >> > >> > /opt/public/jobs/cbi-pdt-3.0-indigo/workspace/build/N201109150911/testing/N201109150911/testing/results/xml! > >> ** > >> > >> > >> Succesful build: > >> > >> [exec] all: > >> [exec] [echo] testPluginDirRoot: > >> > >> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201108100912/testing/target/eclipse/dropins/pdt/eclipse/plugins > >> [exec] [echo] testPluginName: org.eclipse.php.core.tests > >> [exec] [echo] Run > >> > >> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201108100912/testing/target/eclipse/dropins/pdt/eclipse/plugins/org.eclipse.php.core.tests_3.0.0.v201108100912/test.xml: > >> > >> > >> Thank you very much. > >> > >> > >> 2011/9/14 Sergio Martín Morillas <smartinmoril...@gmail.com>: > >> > It seems the workaround has worked. But now it fails to run tests :( > >> > > >> > I compared the console log from 196 build with the failed build log > >> > and I found this: > >> > > >> > [exec] Use DISPLAY port :41 > >> > [exec] [runtests] Using X server: 'Xvnc :41 -geometry 1024x768 > >> > -depth 24 -ac' > >> > [exec] xhost: unable to open display "localhost:41.0" > >> > > >> > Could this be the problem? > >> > > >> > > >> > 2011/9/13 Sergio Martín Morillas <smartinmoril...@gmail.com>: > >> >> As a workaround, maybe you can setup proxy manually in build.xml > file: > >> >> > >> >> <setproxy proxyhost="proxy.eclipse.org" proxyport="9898" /> > >> >> > >> >> > >> >> On Mon, Sep 12, 2011 at 11:26 AM, Roy Ganor <r...@zend.com> wrote: > >> >>> For some reason, both properties are not set. We need to fix it in > the > >> >>> sh script. > >> >>> > >> >>> check-proxy: > >> >>> [subant] Failure for target 'postFetch' of: > >> >>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml > >> >>> [subant] The following error occurred while executing this line: > >> >>> [subant] > >> >>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml:22: > >> >>> The following error occurred while executing this line: > >> >>> [subant] > >> >>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml:58: > >> >>> Properties 'http.proxyHost' and 'http.proxyPort' are both not set. > >> >>> > >> >>> Roy > >> >>> -----Original Message----- > >> >>> From: pdt-dev-boun...@eclipse.org [mailto: > pdt-dev-boun...@eclipse.org] > >> >>> On Behalf Of Sergio Mart?n Morillas > >> >>> Sent: Sunday, September 11, 2011 7:36 PM > >> >>> To: PDT Developers > >> >>> Subject: Re: [pdt-dev] Install latest nightly from hudson > >> >>> > >> >>> Hi Roy, > >> >>> > >> >>> It seems that cbi-pdt-2.2-helios was the same problem. Comment > >> >>> reported by Jacek Pospychala: > >> >>> > >> >>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=322828#c23 > >> >>> > >> >>> Please add this check to build.xml: > >> >>> > >> >>> <target name="check-proxy" description="Checks that proxy properties > >> >>> are set before proceeding -- fails with diagnosis otherwise."> > >> >>> <condition property="check-proxy.hostAndPortBothNotSet"> > >> >>> <and> > >> >>> <not><isset property="http.proxyHost"/></not> > >> >>> <not><isset property="http.proxyPort"/></not> > >> >>> </and> > >> >>> </condition> > >> >>> <fail if="check-proxy.hostAndPortBothNotSet">Properties > >> >>> 'http.proxyHost' and 'http.proxyPort' are both not set.</fail> > >> >>> > >> >>> <condition property="check-proxy.hostSetOnly"> > >> >>> <and> > >> >>> <isset property="http.proxyHost"/> > >> >>> <not><isset property="http.proxyPort"/></not> > >> >>> </and> > >> >>> </condition> > >> >>> <fail if="check-proxy.hostSetOnly">Property 'http.proxyHost' set to > >> >>> '${http.proxyHost}' but 'http.proxyPort' not set.</fail> > >> >>> > >> >>> <condition property="check-proxy.portSetOnly"> > >> >>> <and> > >> >>> <isset property="http.proxyPort"/> > >> >>> <not><isset property="http.proxyHost"/></not> > >> >>> </and> > >> >>> </condition> > >> >>> <fail if="check-proxy.portSetOnly">Property 'http.proxyPort' set to > >> >>> '${http.proxyPort}' but 'http.proxyHost' not set.</fail> > >> >>> > >> >>> <echo>Property 'http.proxyHost' is set to '${http.proxyHost}' and > >> >>> property 'http.proxyPort' is set to '${http.proxyPort}'.</echo> > >> >>> </target> > >> >>> > >> >>> This code is from Virgo project [1], they had a similar problem: > >> >>> > >> >>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=325824 > >> >>> > >> >>> [1] > >> >>> > >> >>> > http://git.eclipse.org/c/virgo/org.eclipse.virgo.virgo-build.git/tree/multi-bundle/common.xml > >> >>> > >> >>> > >> >>> On Sun, Sep 11, 2011 at 1:23 PM, Roy Ganor <r...@zend.com> wrote: > >> >>>> After applying the patch I still see that JFlex is not fetched. I > >> >>>> think > >> >>>> something is still missing in the arguments of the bash scripts to > >> >>>> enable > >> >>>> the proxy page. > >> >>>> > >> >>>> > >> >>>> > >> >>>> getJFlexJar: > >> >>>> > >> >>>> > >> >>>> > >> >>>> setHttpProxy: > >> >>>> > >> >>>> > >> >>>> > >> >>>> downloadAndUnpack: > >> >>>> > >> >>>> [get] Getting: http://jflex.de/jflex-1.4.1.zip > >> >>>> > >> >>>> [get] To: /tmp/PDT_JFlex_files/jflex-1.4.1.zip > >> >>>> > >> >>>> [get] Error getting http://jflex.de/jflex-1.4.1.zip to > >> >>>> /tmp/PDT_JFlex_files/jflex-1.4.1.zip > >> >>>> > >> >>>> [subant] Failure for target 'postFetch' of: > >> >>>> > >> >>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml > >> >>>> > >> >>>> [subant] The following error occurred while executing this line: > >> >>>> > >> >>>> [subant] > >> >>>> > >> >>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml:22: > >> >>>> The following error occurred while executing this line: > >> >>>> > >> >>>> [subant] > >> >>>> > >> >>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml:34: > >> >>>> The following error occurred while executing this line: > >> >>>> > >> >>>> [subant] > >> >>>> > >> >>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201109110403/eclipse/plugins/org.eclipse.php.core/Resources/parserTools/build.xml:19: > >> >>>> The following error occurred while executing this line: > >> >>>> > >> >>>> [subant] > >> >>>> > >> >>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201109110403/eclipse/plugins/org.eclipse.php.core/Resources/parserTools/jflex/build.xml:30: > >> >>>> The following error occurred while executing this line: > >> >>>> > >> >>>> [subant] > >> >>>> > >> >>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201109110403/eclipse/plugins/org.eclipse.php.core/Resources/parserTools/jflex/build.xml:39: > >> >>>> java.net.ConnectException: Connection timed out > >> >>>> > >> >>>> > >> >>>> > >> >>>> > >> >>>> > >> >>>> From: pdt-dev-boun...@eclipse.org > >> >>>> [mailto:pdt-dev-boun...@eclipse.org] On > >> >>>> Behalf Of ??? > >> >>>> Sent: Saturday, September 10, 2011 2:35 PM > >> >>>> To: PDT Developers > >> >>>> Subject: Re: [pdt-dev] Install latest nightly from hudson > >> >>>> > >> >>>> > >> >>>> > >> >>>> thanks very much,I will try it soon! > >> >>>> > >> >>>> 2011/9/10 Sergio Martín Morillas <smartinmoril...@gmail.com> > >> >>>> > >> >>>> Hi Zhao, perhaps it's a proxy problem? > >> >>>> > >> >>>> http://wiki.eclipse.org/Hudson#Accessing_the_Internet_using_Proxy > >> >>>> > >> >>>> According to this page, the shell environment variables are set for > >> >>>> the Hudson build user. > >> >>>> > >> >>>> I've seen other projects using SetProxy task Ant to configure the > >> >>>> proxy in the build.xml [1] > >> >>>> > >> >>>> I have written an untested patch (attached) for > >> >>>> > >> >>>> > >> >>>> > /org.eclipse.pdt/plugins/org.eclipse.php.core/Resources/parserTools/jflex/build.xml > >> >>>> > >> >>>> Hope that helps to fix the problem. > >> >>>> > >> >>>> [1] > >> >>>> > >> >>>> > https://dev.eclipse.org/svnroot/technology/org.eclipse.osee/trunk/releng/org.eclipse.osee.server.releng/build.xml > >> >>>> > >> >>>> On Sat, Sep 10, 2011 at 11:08 AM, 赵忠伟 < > zhaozhong...@eclipseworld.org> > >> >>>> wrote: > >> >>>>> Sergio is right! > >> >>>>> > >> >>>>> I will ask my Jacek to help to fix this,it is very easy to fix > >> >>>>> it,but I do > >> >>>>> not know how to do put the jflex.jar to the hudson server,after > >> >>>>> doing that > >> >>>>> I > >> >>>>> will change the build script.Sorry for delaying so long to fix it. > >> >>>>> > >> >>>>> 2011/9/10 Sergio Martín Morillas <smartinmoril...@gmail.com> > >> >>>>>> > >> >>>>>> Hi Robert, > >> >>>>>> > >> >>>>>> The last builds have failed, Hudson can not download the library > >> >>>>>> JFlex > >> >>>>>> and fails to compile the code. So is not generated compiled build > >> >>>>>> zip > >> >>>>>> :( > >> >>>>>> > >> >>>>>> It seems there is no internet connectivity available from the > >> >>>>>> server > >> >>>>>> Hudson. This is the error: > >> >>>>>> > >> >>>>>> downloadAndUnpack: > >> >>>>>> [get] Getting: http://jflex.de/jflex-1.4.1.zip > >> >>>>>> [get] To: /tmp/PDT_JFlex_files/jflex-1.4.1.zip > >> >>>>>> [get] Error getting http://jflex.de/jflex-1.4.1.zip to > >> >>>>>> /tmp/PDT_JFlex_files/jflex-1.4.1.zip > >> >>>>>> [subant] Failure for target 'postFetch' of: > >> >>>>>> > >> >>>>>> > >> >>>>>> > >> >>>>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml > >> >>>>>> [subant] The following error occurred while executing this > line: > >> >>>>>> [subant] > >> >>>>>> > >> >>>>>> > >> >>>>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml:22: > >> >>>>>> The following error occurred while executing this line: > >> >>>>>> [subant] > >> >>>>>> > >> >>>>>> > >> >>>>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/org.eclipse.pdt.releng/buildExtra.xml:34: > >> >>>>>> The following error occurred while executing this line: > >> >>>>>> [subant] > >> >>>>>> > >> >>>>>> > >> >>>>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201109090312/eclipse/plugins/org.eclipse.php.core/Resources/parserTools/build.xml:19: > >> >>>>>> The following error occurred while executing this line: > >> >>>>>> [subant] > >> >>>>>> > >> >>>>>> > >> >>>>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201109090312/eclipse/plugins/org.eclipse.php.core/Resources/parserTools/jflex/build.xml:28: > >> >>>>>> The following error occurred while executing this line: > >> >>>>>> [subant] > >> >>>>>> > >> >>>>>> > >> >>>>>> > /opt/users/hudsonbuild/.hudson/jobs/cbi-pdt-3.0-indigo/workspace/build/N201109090312/eclipse/plugins/org.eclipse.php.core/Resources/parserTools/jflex/build.xml:32: > >> >>>>>> java.net.ConnectException: Connection timed out > >> >>>>>> > >> >>>>>> > >> >>>>>> > >> >>>>>> On Sat, Sep 10, 2011 at 10:06 AM, Robert Gruendler > >> >>>>>> <r.gruend...@gmail.com> wrote: > >> >>>>>> > Hi, > >> >>>>>> > until recently the nightly PDT builds were available via the > >> >>>>>> > hudson CI > >> >>>>>> > tool > >> >>>>>> > at https://hudson.eclipse.org/hudson/job/cbi-pdt-3.0-indigo/. > >> >>>>>> > Every > >> >>>>>> > build > >> >>>>>> > produced an artifact named something like > >> >>>>>> > pdt-Update-N[TIMESTAMP]>.zip > >> >>>>>> > > >> >>>>>> > It looks like the structure of the build system has been > changed, > >> >>>>>> > as > >> >>>>>> > those > >> >>>>>> > files are not available anymore. Does anyone know > >> >>>>>> > how to install the nightly PDT build at the moment? > >> >>>>>> > > >> >>>>>> > regards > >> >>>>>> > > >> >>>>>> > -robert > >> >>>>>> > > >> >>>>>> > > >> >>>>>> > > >> >>>>>> > _______________________________________________ > >> >>>>>> > pdt-dev mailing list > >> >>>>>> > pdt-dev@eclipse.org > >> >>>>>> > https://dev.eclipse.org/mailman/listinfo/pdt-dev > >> >>>>>> > > >> >>>>>> > > >> >>>>>> > >> >>>>>> > >> >>>>>> > >> >>>>>> -- > >> >>>>>> Sergio Martín Morillas > >> >>>>>> smartinmoril...@gmail.com > >> >>>>>> _______________________________________________ > >> >>>>>> pdt-dev mailing list > >> >>>>>> pdt-dev@eclipse.org > >> >>>>>> https://dev.eclipse.org/mailman/listinfo/pdt-dev > >> >>>>> > >> >>>>> > >> >>>>> > >> >>>>> -- > >> >>>>> > >> >>>>> Thanks! > >> >>>>> > >> >>>>> Best Regards! > >> >>>>> > >> >>>>> Zhao > >> >>>>> > >> >>>>> _______________________________________________ > >> >>>>> pdt-dev mailing list > >> >>>>> pdt-dev@eclipse.org > >> >>>>> https://dev.eclipse.org/mailman/listinfo/pdt-dev > >> >>>>> > >> >>>>> > >> >>>> > >> >>>> > >> >>>> > >> >>>> -- > >> >>>> Sergio Martín Morillas > >> >>>> smartinmoril...@gmail.com > >> >>>> > >> >>>> _______________________________________________ > >> >>>> pdt-dev mailing list > >> >>>> pdt-dev@eclipse.org > >> >>>> https://dev.eclipse.org/mailman/listinfo/pdt-dev > >> >>>> > >> >>>> > >> >>>> -- > >> >>>> > >> >>>> Thanks! > >> >>>> > >> >>>> Best Regards! > >> >>>> > >> >>>> Zhao > >> >>>> > >> >>>> _______________________________________________ > >> >>>> pdt-dev mailing list > >> >>>> pdt-dev@eclipse.org > >> >>>> https://dev.eclipse.org/mailman/listinfo/pdt-dev > >> >>>> > >> >>>> > >> >>> > >> >>> > >> >>> > >> >>> -- > >> >>> Sergio Martín Morillas > >> >>> smartinmoril...@gmail.com > >> >>> _______________________________________________ > >> >>> pdt-dev mailing list > >> >>> pdt-dev@eclipse.org > >> >>> https://dev.eclipse.org/mailman/listinfo/pdt-dev > >> >>> _______________________________________________ > >> >>> pdt-dev mailing list > >> >>> pdt-dev@eclipse.org > >> >>> https://dev.eclipse.org/mailman/listinfo/pdt-dev > >> >>> > >> >> > >> >> > >> >> > >> >> -- > >> >> Sergio Martín Morillas > >> >> smartinmoril...@gmail.com > >> >> > >> > > >> > > >> > > >> > -- > >> > Sergio Martín Morillas > >> > smartinmoril...@gmail.com > >> > > >> > >> > >> > >> -- > >> Sergio Martín Morillas > >> smartinmoril...@gmail.com > >> _______________________________________________ > >> pdt-dev mailing list > >> pdt-dev@eclipse.org > >> https://dev.eclipse.org/mailman/listinfo/pdt-dev > >> _______________________________________________ > >> pdt-dev mailing list > >> pdt-dev@eclipse.org > >> https://dev.eclipse.org/mailman/listinfo/pdt-dev > > > > > > _______________________________________________ > > pdt-dev mailing list > > pdt-dev@eclipse.org > > https://dev.eclipse.org/mailman/listinfo/pdt-dev > > > > > > > > -- > Sergio Martín Morillas > smartinmoril...@gmail.com > _______________________________________________ > pdt-dev mailing list > pdt-dev@eclipse.org > https://dev.eclipse.org/mailman/listinfo/pdt-dev > -- Thanks! Best Regards! Zhao
_______________________________________________ pdt-dev mailing list pdt-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/pdt-dev