RE: how to make windows batch command shell continue run after start up another program.

2012-11-13 Thread ZHANG Xinchun A
I used to have the same need as you.
What I do is in batch file, set BUILD_ID to some other value and use "start" 
command to start your "another program".
Then this "another program" would continue to run without blocking the batch 
file execution.
there is a webpage on Jenkins related website, but I can't find it at the 
moment talking about this. 
you could google it.


Br,
Tony Zhang, Tz

GSM Team @ Beijing, China

-Original Message-
From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of clintthomas
Sent: Wednesday, November 14, 2012 5:33 AM
To: jenkinsci-users@googlegroups.com
Subject: Re: how to make windows batch command shell continue run after start 
up another program.

I am dealing with a similar issue, did you ever get the answer/solution to
this?



--
View this message in context: 
http://jenkins.361315.n4.nabble.com/how-to-make-windows-batch-command-shell-continue-run-after-start-up-another-program-tp4635941p4646041.html
Sent from the Jenkins users mailing list archive at Nabble.com.


Re: how to make windows batch command shell continue run after start up another program.

2012-11-13 Thread clintthomas
I am dealing with a similar issue, did you ever get the answer/solution to
this?



--
View this message in context: 
http://jenkins.361315.n4.nabble.com/how-to-make-windows-batch-command-shell-continue-run-after-start-up-another-program-tp4635941p4646041.html
Sent from the Jenkins users mailing list archive at Nabble.com.


Re: how to make windows batch command shell continue run after start up another program.

2012-07-25 Thread Sami Tikka
Maybe you can find help here: 
https://wiki.jenkins-ci.org/display/JENKINS/My+software+builds+on+my+computer+but+not+on+Jenkins

-- Sami

ZHANG Xinchun A  kirjoitti 25.7.2012 kello 
9.15:

> Hello,
> I’m recenetly working on integrate Jenkins to our test process.
> But I got this problem.
>  
> echo UTT_XML_FILE is %UTT_XML_FILE%
> C:\AlcatelLucent\CIS-RC\CIS-RC.exe 
> D:\Jenkins\workspace\UTT_Auto_Execution\%UTT_XML_FILE% &
>  
> echo "hello we are here"
>  
> the up is my script in batch window. The second line would start up a another 
> program to do some work. The CIS-RC is a separate GUI program  and stands 
> there after it’s launched.
> In a windows’ own cmd, it would return and continue to execute the following 
> line until the whole script is executed.
>  
> But in Jenkins,  it hangs on the second line and never move to the third line.
>  
> Anybody could help on this?
>  
>  
> Br,
> Tony Zhang, Tz