Enable CDash testing

Configure everything using CMake and run 'ctest -D Experimental'
inside the build directory. If you want to participate in the nightly
testing, add

	#!/bin/sh
	cd $BUILD_DIR
	exec ctest -D Nightly

to /etc/cron.daily/opm-core. The results can then be browsed at

<http://opm-project.org/CDash/index.php?project=opm-core>
This commit is contained in:
Andreas Lauser 2013-01-24 14:26:00 +01:00 committed by Roland Kaufmann
parent c1023c0824
commit 2cc9807b63

6
CTestConfig.cmake Normal file
View File

@ -0,0 +1,6 @@
set(CTEST_PROJECT_NAME "opm-core")
set(CTEST_NIGHTLY_START_TIME "01:00:00 UTC")
set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "opm-project.org")
set(CTEST_DROP_LOCATION "/CDash/submit.php?project=opm-core")
set(CTEST_DROP_SITE_CDASH TRUE)