[Buildbot-devel] Missing stdout from ShellCommand

Benoît Allard benoit at aeteurope.nl
Thu Oct 14 15:33:01 UTC 2010


ariasgore at gmx.de wrote:
> Hello,
> I am using buildbot 0.8.1 and calling visual studio devenv.exe to build a project. When I call the project from command line I see the usual output that is directed into stdout, e.g
> 
> Microsoft (R) Visual Studio Version 9.0.21022.8.
> Copyright (C) Microsoft Corp. All rights reserved.
> ...
> 
> When I call the buildbot script which is configured as a shell command
> vs2008_debug_dx9_base =  ShellCommand(
> 	command=["C:\\Program Files (x86)\\Microsoft Visual Studio 9.0\\Common7\\IDE\\devenv.exe", "Projects.sln", "/Build", "x86_Debug_DX9"],
> 	workdir=".",
> 	name="Compiling Debug DX9",
>     description="Started compiling",
>     descriptionDone="Finished compiling",
> 	haltOnFailure=True)
> 

What about if you try with the Visual Studio classes ?

vs2008_debug_dx9_base = VC9(
   mode = "build",
   projectfile = "Projects.sln",
   config = "x86_Debug_DX9"
)

Regards
Benoit
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 6031 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://buildbot.net/pipermail/devel/attachments/20101014/e4d8078f/attachment.bin>


More information about the devel mailing list