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