[Buildbot-devel] Windows specific tips for buildbot

Grig Gheorghiu grig at agilistas.org
Wed Oct 18 17:11:00 UTC 2006


On 10/18/06, Timothee Besset <ttimo at idsoftware.com> wrote:
>
> I started setting up some build slaves in Windows platforms and hitting
> a few road blocks. I found little information on the website and mailing
> list archive about operating buildbot on Windows. Let me list a number
> of problems I have:
>
> === How do you create build steps for Visual Studio?
> This should be a simple matter of calling devenv.exe with the
> appropriate parameters, so I'm doing something like that:
>
> s( step.ShellCommand, command=
> r'"C:\Program Files (x86)\Microsoft Visual Studio
> 8\Common7\IDE\devenv.exe" /build "Debug|Win32" /out build.log' )
>
> which doesn't quite work:
>
> '\"C:\Program Files (x86)\Microsoft Visual Studio
> 8\Common7\IDE\devenv.exe\"' is not recognized as an internal or external
> command,
> operable program or batch file.
>
> What's the proper way of escaping the path?



I recommend creating a custom build step which inherits from ShellCommand
and calls a script such as build.cmd. Inside that script you should then be
able to call whatever steps are necessary for your build.


=== Compiling from command line with Visual Studio doesn't output to
> stdout, but to a log file.
> That's the /out build.log part
> -> how to have that print out progressively as the build goes?


Not sure if Windows .cmd files (or .bat files) can do tricks like tee, but
you may want to try something like that.


=== Running the slave as a service?
>
> It's the absolute suck to have to have a session opened with
> "buildbot.bat start-slave ." running. I was looking at getting things
> running as a service, but didn't find much information? Some of the docs
> point to using srvany.exe and such, but I haven't found a download from
> Microsoft with those tools ( Resource Kit ) that works on 64 bit
> platforms?
>
> There.. hope I can grab some bits of information from the various issues
> there..


I used the srvany method on a 64-bit Windows box, using 32-bit Resource Kit
utilities, and it worked just fine.

Grig
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://buildbot.net/pipermail/devel/attachments/20061018/7c94946a/attachment.html>


More information about the devel mailing list