From 0b6ccc85cfb9c0722271578fcd6dfaea474d15ef Mon Sep 17 00:00:00 2001 From: Rossen Apostolov Date: Fri, 25 Nov 2011 11:44:09 +0100 Subject: [PATCH] Added support for submission to cdash servers. With the default setup ctest will send the results to the Gromacs project on cdash.gromacs.org Change-Id: Ieb096b7c20734ec7a641523aba06775eb1c2ccc6 --- CTestConfig.cmake | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CTestConfig.cmake diff --git a/CTestConfig.cmake b/CTestConfig.cmake new file mode 100644 index 0000000000..c31b87af10 --- /dev/null +++ b/CTestConfig.cmake @@ -0,0 +1,13 @@ +SET(CTEST_PROJECT_NAME "Gromacs") +SET(CTEST_NIGHTLY_START_TIME "00:00:00 EST") + +IF(NOT DEFINED CTEST_DROP_METHOD) + SET(CTEST_DROP_METHOD "http") +ENDIF(NOT DEFINED CTEST_DROP_METHOD) + +IF(CTEST_DROP_METHOD STREQUAL "http") + SET(CTEST_DROP_SITE "cdash.gromacs.org") + SET(CTEST_DROP_LOCATION "/submit.php?project=Gromacs") + SET(CTEST_DROP_SITE_CDASH TRUE) +ENDIF(CTEST_DROP_METHOD STREQUAL "http") + -- 2.22.0