1 # ============================================================================ 2 # Copyright (c) 2015 <provider-name> 5 # See COPYING file for license information. 6 # ============================================================================ 8 ############################################################################## 9 # @file CTestConfig.cmake 10 # @brief Dashboard configuration file. 11 ############################################################################## 13 # set CTest/CDash project name 14 set (CTEST_PROJECT_NAME
"grl")
16 # start time of Nightly test model
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.
25 # Use the Continuous or Experimental test models
if you want to execute
27 set (CTEST_NIGHTLY_START_TIME
"2:00:00 UTC")
29 # dashboard submission to <project-name> CDash server 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)
41 # See CTest.cmake module. 42 set (CTEST_USE_LAUNCHERS 0)