Re: build is not finished if start executable

2006-07-02 Thread Marcin Gurbisz
Hi, I have the same problem. I want to run jboss after successful build using exec ant task but this hangs continuum build. I believed that adding spawn=true attribute will solve the problem (seems that ant process waits for jboss process to finish, thus continuum waits too) but result is the

Re: build is not finished if start executable

2006-06-19 Thread Maksimenko Alexander
Emmanuel Venisse wrote: Which server do you want to restart? jboss but even I start simple bat file continuum is not finished until this bat does not mark it's build as finished until this bat is not stopped are you successful in restarting another server? Maksimenko Alexander a écrit :

Re: build is not finished if start executable

2006-06-16 Thread Maksimenko Alexander
Emmanuel Venisse wrote: Hmm, very strange. Do you have updated your ant script? http://maven.apache.org/continuum/faqs.html#how-does-continuum-detect-a-successful-build yes of cause has anybody tried to restart server in project build? I think it is common task for continues integration

Re: build is not finished if start executable

2006-06-16 Thread Emmanuel Venisse
Which server do you want to restart? Maksimenko Alexander a écrit : Emmanuel Venisse wrote: Hmm, very strange. Do you have updated your ant script? http://maven.apache.org/continuum/faqs.html#how-does-continuum-detect-a-successful-build yes of cause has anybody tried to restart server in

Re: build is not finished if start executable

2006-06-16 Thread Maksimenko Alexander
Emmanuel Venisse wrote: Hmm, very strange. Do you have updated your ant script? http://maven.apache.org/continuum/faqs.html#how-does-continuum-detect-a-successful-build yes of cause has anybody tried to restart server in project build? I thought it is common task for continues

Re: build is not finished if start executable

2006-06-15 Thread Emmanuel Venisse
Hmm, very strange. Do you have updated your ant script? http://maven.apache.org/continuum/faqs.html#how-does-continuum-detect-a-successful-build Emmanuel Maksimenko Alexander a écrit : Emmanuel Venisse wrote: BUILD SUCCESSFUL isn't a continuum message but a ant message. it's perhaps a bug

Re: build is not finished if start executable

2006-06-15 Thread Maksimenko Alexander
Emmanuel Venisse wrote: Can you send your continuum logs? it's nothing odd in the log : INFO Continuum - Enqueuing 'processbuilder' (Build definition id=1). INFO ContinuumScm - Updating project: id: '1', name 'processbuilder'. INFO ScmManager

Re: build is not finished if start executable

2006-06-15 Thread Emmanuel Venisse
if it's all your logs, the ant process isn't finished because you should have return code = 0 in log Emmanuel Maksimenko Alexander a écrit : Emmanuel Venisse wrote: Can you send your continuum logs? it's nothing odd in the log : INFO Continuum - Enqueuing

Re: build is not finished if start executable

2006-06-15 Thread Maksimenko Alexander
Emmanuel Venisse wrote: if it's all your logs, the ant process isn't finished because you should have return code = 0 in log but if it's not finished - what does it mean BUILD SUCCESSFUL message in continuum's log? if I perform this task in shell then ant process will be finished so may

Re: build is not finished if start executable

2006-06-15 Thread Emmanuel Venisse
BUILD SUCCESSFUL isn't a continuum message but a ant message. it's perhaps a bug in ShellCommandHelper, the exit code is return by Process class and printed in AbstractBuildExecutor (line 189). so if you don't have Exit code: in your log, it's because Process objec doesn't return it. Can you

Re: build is not finished if start executable

2006-06-15 Thread Maksimenko Alexander
Emmanuel Venisse wrote: BUILD SUCCESSFUL isn't a continuum message but a ant message. it's perhaps a bug in ShellCommandHelper, the exit code is return by Process class and printed in AbstractBuildExecutor (line 189). so if you don't have Exit code: in your log, it's because Process objec

build is not finished if start executable

2006-06-14 Thread Maksimenko Alexander
hi! I spent 2 days to the following problem : I start executable in ant script target name= exec executable=cmd dir=. spawn=true arg line=/C start calc.exe/ /exec /target the execution of ant script has been finished but continuum build is not marked

build is not finished if start executable

2006-06-14 Thread Maksimenko Alexander
hi! I spent 2 days to the following problem : I start executable in ant script target name= exec executable=cmd dir=. spawn=true arg line=/C start calc.exe/ /exec /target the execution of ant script has been finished but continuum build is not marked

Re: build is not finished if start executable

2006-06-14 Thread Emmanuel Venisse
Can you send your continuum logs? Emmanuel Maksimenko Alexander a écrit : hi! I spent 2 days to the following problem : I start executable in ant script target name= exec executable=cmd dir=. spawn=true arg line=/C start calc.exe/ /exec /target the