Hi
I want to use a Continuous Integration (CI) build tool (Hudson in this case) to periodically build our CCSv3.3 project. The idea is that the build tool will automatically build the project, either periodically or in response to a commit to our version control system, and notify the developers by email if the build breaks. We could go on to add automated tests to the resulting build.
In its simplest form, the tool checks out the required source code and executes a build command. In my case the command is:
timake myProj.pjt Debug
Now, the build tool needs to determine whether the build performed by timake passed or failed - it can't interrogate the console output. Typically, one would use ERRORLEVEL or similar to determine what happened.
So my questions are:
1) Does timake support ERRORLEVEL or similar?
2) Does anyone have experience of using a CI build tool with CCS that they would like to share?
Best regards
David