Re: Community Help with Maven ITs

2008-07-21 Thread Jason van Zyl
I'll start looking at this when I swap out Maven SCM to do everything for us. On 21-Jul-08, at 4:16 AM, Stephen Connolly wrote: I'm having problems getting this set up to work from behind a http proxy. I've set up subversion's servers file correctly Here's what I get from the bootstrap:

Re: Community Help with Maven ITs

2008-07-21 Thread Stephen Connolly
I'm having problems getting this set up to work from behind a http proxy. I've set up subversion's servers file correctly Here's what I get from the bootstrap: started ERROR: svn: No credential to try. Authentication failed org.tmatesoft.svn.core.SVNCancelException: svn: No credential to try. Au

Re: Community Help with Maven ITs

2008-07-19 Thread Jason van Zyl
On 19-Jul-08, at 6:42 PM, Dennis Lundberg wrote: No, I don't have Cygwin installed, and I'm seeing the same problem that Benjamin is. The problem is that the config.xml for maven-2.1.x-IT-support and maven-2.1.x-ITs use this: ... To be able to run such a job in Hudson,

Re: Community Help with Maven ITs

2008-07-19 Thread Dennis Lundberg
No, I don't have Cygwin installed, and I'm seeing the same problem that Benjamin is. The problem is that the config.xml for maven-2.1.x-IT-support and maven-2.1.x-ITs use this: ... To be able to run such a job in Hudson, it requires the presence of a "sh" executable,

Re: Community Help with Maven ITs

2008-07-18 Thread Jason van Zyl
Brian and Dennis were both running under Windows and Brian didn't have Cygwin installed. Not sure what Dennis had on his machine. On 18-Jul-08, at 2:47 PM, Benjamin Bentmann wrote: Brian E. Fox wrote: What dependency on cygwin? I am referring to this error while trying to build maven-2.1.

Re: Community Help with Maven ITs

2008-07-18 Thread Benjamin Bentmann
Jason van Zyl wrote: There's a new bundle up there now. OK, now I get: 440 create.sh 2.441.718 haven-1.0.jar 119 hudson.bat 142 hudson.sh 19.810.714 hudson.war 142 start.sh templates Also, the config.xm

Re: Community Help with Maven ITs

2008-07-18 Thread Jason van Zyl
There's a new bundle up there now. On 18-Jul-08, at 3:02 PM, Dennis Lundberg wrote: I just downloaded and unpacked the new bundle, and I've got -rw-rw-rw- 1 dlg01 0 440 2008-07-11 15:55 create.sh -rw-rw-rw- 1 dlg01 0 2441718 2008-07-17 14:19 haven-1.0.jar -rw-rw-rw- 1 dlg01 0 19810714

Re: Community Help with Maven ITs

2008-07-18 Thread Jason van Zyl
On 18-Jul-08, at 3:05 PM, Benjamin Bentmann wrote: Jason van Zyl wrote: You've got the wrong bundle it appears. The new one: -rw-r--r-- 1 jvanzyl jvanzyl 2441718 17 Jul 14:19 haven-1.0.jar -rw-r--r--@ 1 jvanzyl jvanzyl 19810714 17 Jul 13:55 hudson.war -rw-r--r-- 1 jvanzyl jvanzyl

Re: Community Help with Maven ITs

2008-07-18 Thread Dennis Lundberg
I just downloaded and unpacked the new bundle, and I've got -rw-rw-rw- 1 dlg01 0 440 2008-07-11 15:55 create.sh -rw-rw-rw- 1 dlg01 0 2441718 2008-07-17 14:19 haven-1.0.jar -rw-rw-rw- 1 dlg01 0 19810714 2008-07-17 13:55 hudson.war -rw-rw-rw- 1 dlg01 0 142 2008-07-17 14:13 start.sh d

Re: Community Help with Maven ITs

2008-07-18 Thread Benjamin Bentmann
Jason van Zyl wrote: You've got the wrong bundle it appears. The new one: -rw-r--r-- 1 jvanzyl jvanzyl 2441718 17 Jul 14:19 haven-1.0.jar -rw-r--r--@ 1 jvanzyl jvanzyl 19810714 17 Jul 13:55 hudson.war -rw-r--r-- 1 jvanzyl jvanzyl 119 17 Jul 15:37 start.bat -rwxr-xr-x@ 1 jvanzyl j

Re: Community Help with Maven ITs

2008-07-18 Thread Jason van Zyl
You've got the wrong bundle it appears. The new one: -rw-r--r-- 1 jvanzyl jvanzyl 2441718 17 Jul 14:19 haven-1.0.jar -rw-r--r--@ 1 jvanzyl jvanzyl 19810714 17 Jul 13:55 hudson.war -rw-r--r-- 1 jvanzyl jvanzyl 119 17 Jul 15:37 start.bat -rwxr-xr-x@ 1 jvanzyl jvanzyl 142 17 Jul

Re: Community Help with Maven ITs

2008-07-18 Thread Benjamin Bentmann
Brian E. Fox wrote: What dependency on cygwin? I am referring to this error while trying to build maven-2.1.x-IT-support: [workspace] $ sh -xe \Temp\hudson39040.sh The system cannot find the file specified FATAL: Command execution failed java.io.IOException: Cannot run program "sh" (in direct

RE: Community Help with Maven ITs

2008-07-18 Thread Brian E. Fox
To: Maven Developers List Subject: Re: Community Help with Maven ITs Jason van Zyl wrote: > Ok, I have a new portable bundle. To get rid of the requirement on cygwin: You could use the Os class from plexus-utils to detect Windows and set a flag in the Velocity context for the templates. Using t

Re: Community Help with Maven ITs

2008-07-18 Thread Benjamin Bentmann
Jason van Zyl wrote: Ok, I have a new portable bundle. To get rid of the requirement on cygwin: You could use the Os class from plexus-utils to detect Windows and set a flag in the Velocity context for the templates. Using this flag, the templates could be tweaked to use batch files instead

Re: Community Help with Maven ITs

2008-07-18 Thread Benjamin Bentmann
Jason van Zyl wrote: I replaced all the scripting with Velocity templating ExodusCli.java:70 w = new FileWriter(job); Using w = WriterFactory.newXmlWriter(job); from plexus-utils instead would ensure proper output encoding for the config.xml and improve platform independence of the bundl

Re: Community Help with Maven ITs

2008-07-18 Thread Benjamin Bentmann
Jason van Zyl wrote: I replaced all the scripting with Velocity templating for all the jobs that are created. Another suggestion: In ExodusCli.java:45 replace hudsonHome = System.getProperty("user.dir"); with hudsonHome = new File(System.getProperty("user.dir"), "runtime").getPath(); T

Re: Community Help with Maven ITs

2008-07-18 Thread Jason van Zyl
You and Brian can fight it out over the windows stuff. On 18-Jul-08, at 12:12 PM, Benjamin Bentmann wrote: Jason van Zyl wrote: Ok, I have a new portable bundle. Maybe you find this Windows batch file a useful addition: @echo off set "dir=%~dp0" if

Re: Community Help with Maven ITs

2008-07-18 Thread Benjamin Bentmann
Jason van Zyl wrote: Ok, I have a new portable bundle. Maybe you find this Windows batch file a useful addition: @echo off set "dir=%~dp0" if "%dir:~-1%" == "\" set "dir=%dir:~0,-1%" set "HUDSON_HOME=%dir%\runtime" if not exist "%HUDSON_HOME%" ( j

Re: Community Help with Maven ITs

2008-07-18 Thread Jason van Zyl
Ok, I have a new portable bundle. I replaced all the scripting with Velocity templating for all the jobs that are created. Brian tested it on Windows and it all seems to be working fine. http://people.apache.org/~jvanzyl/hudson.zip I'm next getting Hudson to pull the POMs directly to create

Re: Community Help with Maven ITs

2008-07-13 Thread Jason van Zyl
Ok, I'm working on collecting the results so we can work with them. On 13-Jul-08, at 8:00 AM, Siarhei Dudzin wrote: I've ran it Jul 12, 2008 11:26:10 PM(CET). Siarhei On Sun, Jul 13, 2008 at 2:42 AM, Jason van Zyl <[EMAIL PROTECTED]>

Re: Community Help with Maven ITs

2008-07-13 Thread Siarhei Dudzin
I've ran it Jul 12, 2008 11:26:10 PM(CET). Siarhei On Sun, Jul 13, 2008 at 2:42 AM, Jason van Zyl <[EMAIL PROTECTED]> wrote: > When did you run this? > > > On 12-Jul-08, at 8:39 PM, Siarhei Dudzin wrote: > > Good idea, because I got som

Re: Community Help with Maven ITs

2008-07-12 Thread Jason van Zyl
When did you run this? On 12-Jul-08, at 8:39 PM, Siarhei Dudzin wrote: Good idea, because I got something different: [java] Failed tests: [java] testRunningScmPlugin (org.apache.maven.embedder.execution.EmbedderUsingScmPluginTest) On Sat, Jul 12, 2008 at 4:46 PM, Jason van Zy

Re: Community Help with Maven ITs

2008-07-12 Thread Siarhei Dudzin
Good idea, because I got something different: [java] Failed tests: [java] testRunningScmPlugin(org.apache.maven.embedder.execution.EmbedderUsingScmPluginTest) On Sat, Jul 12, 2008 at 4:46 PM, Jason van Zyl <[EMAIL PROTECTED]> wrote: > Cool, I'm trying to figure out how to collate

Re: Community Help with Maven ITs

2008-07-12 Thread Benjamin Bentmann
Jason van Zyl wrote: Results : Tests in error: testitMNG3380(org.apache.maven.integrationtests.MavenITmng3380ManagedRelocatedTransdepsTest) Tests run: 166, Failures: 0, Errors: 1, Skipped: 0 Confirmed on Xubuntu 8.04 with Sun JDK 1.6.0_06 Benjamin ---

Re: Community Help with Maven ITs

2008-07-12 Thread Jason van Zyl
John, The four folks I've gotten feedback from have the have 3380ManagedRelocatedTransdepsTest failing and you made the most recent changes. Could you take a look? On 12-Jul-08, at 9:40 AM, Dennis Lundberg wrote: I managed to tweak the scripts and configurations to run on Windows XP. My

Re: Community Help with Maven ITs

2008-07-12 Thread Jason van Zyl
Cool, I'm trying to figure out how to collate all the incoming reports easily as even with 20 people doing this the noise will be overwhelming. Just for the record I think this is a huge step toward creating a sustainable system. On 12-Jul-08, at 9:42 AM, Dennis Lundberg wrote: It seems t

Re: Community Help with Maven ITs

2008-07-12 Thread Jason van Zyl
Awesome, thanks Dennis. You get the same failure Brian and I get for the first. The second has been intermittently problematic in the past. This is a great start, once we can start collecting these across tens of machines we can start nailing down the nastiest of problems. I would guess now

Re: Community Help with Maven ITs

2008-07-12 Thread Dennis Lundberg
It seems that Benjamin beat me to it :-) http://jira.codehaus.org/browse/MNG-3663 Dennis Lundberg wrote: I managed to tweak the scripts and configurations to run on Windows XP. My results differ a bit from yours: Tests in error: testitMNG3380(org.apache.maven.integratio

Re: Community Help with Maven ITs

2008-07-12 Thread Dennis Lundberg
I managed to tweak the scripts and configurations to run on Windows XP. My results differ a bit from yours: Tests in error: testitMNG3380(org.apache.maven.integrationtests.MavenITmng3380ManagedRelocatedTransdepsTest) testit0088(org.apache.maven.integrationtests.MavenIT00

Re: Community Help with Maven ITs

2008-07-11 Thread Jason van Zyl
The result that Brian and I get is the following. Just incase anyone wants to run them. Brian diddled the scripts so it would run on Windows, and I ran on OS X. If there's any problems with the bundle people find. I'll fix them this weekend. Results : Tests in error: testitMNG3380 (org

Re: Community Help with Maven ITs

2008-07-11 Thread Jason van Zyl
To many people wanted to try this out so this is the first cut of the Hudson bundle: http://people.apache.org/~jvanzyl/hudson.zip It's fairly crude, and Windows users are SOL until Monday (Unless you have Cygwin). I just wrote some bash scripts to prototype it, but I've start rewriting it

Re: Community Help with Maven ITs

2008-07-10 Thread Gerrit Jansen van Vuuren
Hi, I´m running a Ubuntu Hardy instalation with a dual core 6700 4gig ram. How long were you thinking of making the test? If you pass me the pre configured hudson instance (via ftp or other means) I can let it run on my pc. Regards, Gerrit Jansen van Vuuren On 7/9/08, Jason van Zyl <[EMAIL PRO

Re: Community Help with Maven ITs

2008-07-09 Thread Jason van Zyl
Ok, I'll start tracking people and their email address and make a small mailing list to keep track. On 9-Jul-08, at 1:47 PM, Jamie Whitehouse wrote: On Wed, 2008-07-09 at 13:27 -0400, Jason van Zyl wrote: Hi, I'm asking a small handful of developers to run a pre-configured Hudson instance

Re: Community Help with Maven ITs

2008-07-09 Thread Jamie Whitehouse
On Wed, 2008-07-09 at 13:47 -0400, Jamie Whitehouse wrote: > On Wed, 2008-07-09 at 13:27 -0400, Jason van Zyl wrote: > > > if you're interested please contact me privately and I will set you up > > with a Hudson install. Err, sorry everyone...seems that I missed that reply-to is set to the li

Re: Community Help with Maven ITs

2008-07-09 Thread Jamie Whitehouse
On Wed, 2008-07-09 at 13:27 -0400, Jason van Zyl wrote: > Hi, > > I'm asking a small handful of developers to run a pre-configured > Hudson instance to collect results for the Maven ITs. All I need is > your machine. I have an Ubuntu Hardy box running Java5 that can be used. > I will hand

Community Help with Maven ITs

2008-07-09 Thread Jason van Zyl
Hi, I'm asking a small handful of developers to run a pre-configured Hudson instance to collect results for the Maven ITs. All I need is your machine. I will hand off a self-contained Hudson instance that you just start up and run. It will also report back to a master server but I would l