[Buildbot-devel] step.Compile problem

Stefan Seefeld seefeld at sympatico.ca
Thu Feb 23 14:36:28 UTC 2006


Shane Vorwerk wrote:
> Hi
> 
> I have just started trying out buildbot (using  0.7.2)
> and have run into a small problem. 
> 
> using the following:
> 
> steps = [s(step.SVN, mode='export',  
> baseURL='file:///e:/svnrep',      defaultBranch=''),
>         s(step.Compile, command="scons all"),
>         s(step.Test, command="scons test")
> 	]
> 
> The check out works fine, but both the compile and
> test steps fail.
> 
> C:\WINDOWS\system32\cmd.exe /c scons all
>  in dir e:/bbslave/test/build (timeout 1200 secs)
>  argv: ['C:\\WINDOWS\\system32\\cmd.exe', '/c', 'scons
> all']
> '"scons all' is not recognized as an internal or
> external command, operable program or batch file.
> 
> I have tried this with a command such as "make test"
> and get the same result. Using a single argument such
> as command="scons" works fine.

Try passing a list such as ['scons', 'test'] instead
of the concatenated string as command.

HTH,
		Stefan




More information about the devel mailing list