vote up 0 vote down star

We use TeamCity, nant and psexec to run a command on a remote machine as part of the release packaging. Everything works fine when I run the nant from the console but when running from teamcity psexec hangs (freezes) 50% of the times.
I looked through many forums and there seems to be workarounds that increase complexity of the call and involve loosing the output and the errorcode of the command.
Does anyone know an easier way to run a command on a remote machine?
I don't mind setting up some application on the remote machine, like a telnet server, any advices on what to do?
Thanks

flag

80% accept rate
I'm still looking for an alternative tool for this. repeating the call until it works is not acceptable in some cases, where I need to run it once and know the result. I'm going to try installing a telnet server. – pauloya Nov 4 at 10:24

2 Answers

vote up 1 vote down check

I have solved this issue with a combination of RemCom and a custom MSBuild task called ExecParse.

RemCom, because it doesn't do odd things with STDOUT (thus hanging the build). We used, and ExecParse to capture the output of the remote task, and parse the Exit Code from the output, because the standard MSBuild Exec task does not capture output. Some NAnt equivalent that captures the output would work.

I've detailed this in a blog post: "Continuous Integration: Executing Remote Tasks with TeamCity, MSBuild, RemCom, and ExecParse"

link|flag
RemCom worked! I couln't get the STDOUT and STDERR from the command outputing from nant, but I could parse the exit code by saving the exec output to a file and then using a regex to parse the file. Thank! – pauloya Nov 14 at 12:22
vote up 1 vote down

How about putting a (nant) time-out on the psexec and repeat the call until no time-out happens?

Regards,

Sebastiaan

link|flag
Hmm, as quick workaround it's a good ideia. :) I'll try that. – pauloya Oct 22 at 7:24
That was quite easy to do! used the <exec> timeout and checked for error level = -1000, then put 5 calls to the target in a row with <if>'s. If nothing better comes up I'll keep this! – pauloya Oct 22 at 8:38
Good to hear. :) Can't you use foreach? That way your script will be bit cleaner. Regards, Sebastiaan – Sebastiaan Megens Oct 22 at 11:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.