I have a project that uses a single .py file to build and zip everything. How can this be called successfully in Cruise Control? I have tried the following for a default Ant build script:
<project name="x" default="build">
<target name="build">
<exec executable="python2.7.2" failonerror="true">
<arg value="C:\build\trunk\build.py" />
<arg value="$(label)" />
</exec>
</target>
However, Cruise control comes back with "cannot run program 'python 2.7.2' the system cannot find the file specified.
This is a real newbie question, but could someone point me in the right direction for getting CC to execute a .py script? I can't find a single good resource.