CTestConfig.cmake
Go to the documentation of this file.
1 # ============================================================================
2 # Copyright (c) 2015 <provider-name>
3 # All rights reserved.
4 #
5 # See COPYING file for license information.
6 # ============================================================================
7 
8 ##############################################################################
9 # @file CTestConfig.cmake
10 # @brief Dashboard configuration file.
11 ##############################################################################
12 
13 # set CTest/CDash project name
14 set (CTEST_PROJECT_NAME "grl")
15 
16 # start time of Nightly test model
17 #
18 # All Nightly tests which are executed within a time window of 24 hours
19 # starting at the specified start time, will replace previous submissions
20 # made within the same time frame such that for each time frame of 24 hours
21 # only one result of test executions is present on the dashboard.
22 # The execution of the Nightly tests is usually triggered automatically
23 # via a scheduled cron job that is run once every 24 hours.
24 #
25 # Use the Continuous or Experimental test models if you want to execute
26 # tests manually.
27 set (CTEST_NIGHTLY_START_TIME "2:00:00 UTC")
28 
29 # dashboard submission to <project-name> CDash server
30 #
31 # Note: By default, CTest does not support HTTPS as submission method.
32 # In order to enable it, CTest (and hence CMake) has to be build
33 # manually with the option CMAKE_USE_OPENSSL enabled.
34 set (CTEST_DROP_METHOD "http")
35 set (CTEST_DROP_SITE "<ctest-drop-site>")
36 set (CTEST_DROP_LOCATION "/cdash/submit.php?project=${CTEST_PROJECT_NAME}")
37 set (CTEST_DROP_SITE_CDASH TRUE)
38 
39 # launchers
40 #
41 # See CTest.cmake module.
42 set (CTEST_USE_LAUNCHERS 0)