Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [wtp-dev] How to access a remote SourceForge SVN repository form a Hudson build?

Forgot to answer the technical aspect of your question... access to an
external SVN server from Eclipse Hudson instance.

I would guess that you are having problems due to the proxy. Our Hudson
instances needs to go through a proxy to get internet access. I had to add
the following properties to my job's build invocation before it would see
the world.

http.proxyHost=proxy.eclipse.org 
http.proxyPort=9898
https.proxyHost=proxy.eclipse.org
https.proxyPort=9898
httpnonProxyHosts=*.eclipse.org
httpsnonProxyHosts=*.eclipse.org
ftp.proxyHost=proxy.eclipse.org
ftp.proxyPort=9898
ftpnonProxyHosts=*.eclipse.org

These came from some Eclipse Hudson wiki page.

- Konstantin


-----Original Message-----
From: Konstantin Komissarchik [mailto:konstantin.komissarchik@xxxxxxxxxx] 
Sent: Tuesday, November 30, 2010 1:19 PM
To: 'General discussion of project-wide or architectural issues.'
Subject: RE: [wtp-dev] How to access a remote SourceForge SVN repository
form a Hudson build?

I believe your usage is allowed without a CQ, since it is limited to build
server. You can probably get a formal statement on this from the legal team,
but here is a reference to their position on the matter.

https://bugs.eclipse.org/bugs/show_bug.cgi?id=314818

- Konstantin


-----Original Message-----
From: wtp-dev-bounces@xxxxxxxxxxx [mailto:wtp-dev-bounces@xxxxxxxxxxx] On
Behalf Of Gabriel Petrovay
Sent: Tuesday, November 30, 2010 12:55 PM
To: General discussion of project-wide or architectural issues.
Subject: Re: [wtp-dev] How to access a remote SourceForge SVN repository
form a Hudson build?

The problem is that those test queries change very often die to:
- new features
- new bugs

I want to avoid this indirection to check if the existing files have
been modified.

Basically, We want to use them the same way findbugs was used in a
previous version of the buildUtils.xml you wrote in our releng
plug-in. Download the package, check the build against the downloaded
package and print a report based on it. There is no source or binary
distribution. I see this falling in the same category. Did that
findbugs zip archive pass the IP process?


Gabriel


On Mon, Nov 29, 2010 at 9:56 PM, David Carver <d_a_carver@xxxxxxxxx> wrote:
> You should submitt them for CQs and get them approved, and then host those
> same file in the git repository.   We had to do that with the XQuery/Xpath
> 2.x test suite from the W3C that we use.
>
> Dave
>
> On 11/29/2010 10:10 AM, Gabriel Petrovay wrote:
>>
>> They are part of the open source Zorba XQuery Processor project hosted on
>> SF.
>> The project is under Apache 2 license.
>> We need to access the files under
>>
>>
http://zorba.svn.sourceforge.net/svnroot/zorba/trunk/zorba/test/rbkt/Queries
/zorba/
>> as data inputs for the conformance tests. The folder contains XQuery test
>> files.
>>
>>
>> Gabriel
>>
>>
>> On Mon, Nov 29, 2010 at 3:34 PM, David Carver<d_a_carver@xxxxxxxxx>
>>  wrote:
>>>
>>> What type of files are these?   Are they binaries, or data inputs.
>>>
>>> Regardless they may need to go through a CQ.
>>>
>>> Dave
>>>
>>> On 11/29/2010 09:00 AM, Gabriel Petrovay wrote:
>>>>
>>>> Hi,
>>>>
>>>> During our Hudson builds I want to access a SourceForge SVN repository
>>>> of another project to download some files used as input in our
>>>> testing. I tried using bash commands in the Hudson build as a test,
>>>> but apparently, they are not allowed to do this:
>>>> see
>>>>
>>>>
https://hudson.eclipse.org/hudson/view/WTP/job/cbi-wtp-inc-xquery/541/consol
e
>>>> + mkdir -p downloads/zorba
>>>> + svn co
>>>>
>>>>
http://zorba.svn.sourceforge.net/svnroot/zorba/trunk/zorba/test/rbkt/Queries
/zorba/
>>>> rbkt_test_queries
>>>> svn: OPTIONS of
>>>>
>>>>
>>>>
'http://zorba.svn.sourceforge.net/svnroot/zorba/trunk/zorba/test/rbkt/Querie
s/zorba':
>>>> 200 OK (http://zorba.svn.sourceforge.net)
>>>>
>>>> Is there anything else that I should try? Will one of the following
>>>> work:
>>>> http://ant.apache.org/antlibs/svn/
>>>> http://subclipse.tigris.org/svnant.html
>>>>
>>>>
>>>> If you don't already know the answer to this question, can someone
>>>> please point me to the right mailing list/person where I should ask
>>>> it?
>>>>
>>>> Thanks
>>>>
>>> _______________________________________________
>>> wtp-dev mailing list
>>> wtp-dev@xxxxxxxxxxx
>>> https://dev.eclipse.org/mailman/listinfo/wtp-dev
>>>
>>
>>
>
> _______________________________________________
> wtp-dev mailing list
> wtp-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/wtp-dev
>



-- 
MSc Gabriel Petrovay
Mobile: +41(0)787978034
www.28msec.com
_______________________________________________
wtp-dev mailing list
wtp-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/wtp-dev



Back to the top