What does the script that you run by cron look like? Is it a declarative(/old-style) ctest script or a command-based(/new-style) ctest script?Or something else?
In a command-based ctest script (one that uses CTEST_BUILD(), CTEST_TEST() and CTEST_SUBMIT(), for example) you could add EXECUTE_PROCESS calls at the bottom of the script after the submission. In a declarative style ctest script, you could set CTEST_COMMAND to be a list of multiple commands, rather than just a ctest -D call, as exemplified by this VTK build script: http://www.cdash.org/CDash/viewNotes.php?buildid=212772 (In the example, the dashboard is run by a ctest -D command, and then a memcheck dashboard is run after that...) HTH, David On Wed, Nov 12, 2008 at 9:31 AM, <[EMAIL PROTECTED]> wrote: > Hi list, > > I have got here a script which is invoked by cron job. During that all will > be checked out and compiled, tested and uploaded to Cdash server. > What I want to do now is to add a post command to my script so that I can > run a profiling tool. Additionally I want to use in the post script also the > svn command in order to tag my currently tested results. > > Is there any possibilty to solve that? > > Thanks for your info. > > Greetings > > Alexander > > > ---------------------------------------------------------------- > Please note: This e-mail may contain confidential information > intended solely for the addressee. If you have received this > e-mail in error, please do not disclose it to anyone, notify > the sender promptly, and delete the message from your system. > Thank you. > > > _______________________________________________ > CMake mailing list > [email protected] > http://www.cmake.org/mailman/listinfo/cmake >
_______________________________________________ CMake mailing list [email protected] http://www.cmake.org/mailman/listinfo/cmake
