File: CTestConfig.cmake

package info (click to toggle)
camitk 6.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 389,496 kB
  • sloc: cpp: 103,476; sh: 2,448; python: 1,618; xml: 984; makefile: 128; perl: 84; sed: 20
file content (19 lines) | stat: -rw-r--r-- 773 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## This file should be placed in the root directory of your project.
## Then modify the CMakeLists.txt file in the root directory of your
## project to incorporate the testing dashboard.
## # The following are required to uses Dart and the Cdash dashboard
set(CTEST_PROJECT_NAME "camitkcommunityedition")
set(CTEST_NIGHTLY_START_TIME "22:00:00 UTC")

set(CTEST_DROP_METHOD "https")
set(CTEST_DROP_SITE "cdash-timc.imag.fr")
set(CTEST_DROP_LOCATION "/submit.php?project=camitk-communityedition")
set(CTEST_DROP_SITE_CDASH TRUE)

## Disable CA certificates verification, until TIMC got valid certificate for this server
if (CTEST_DROP_METHOD STREQUAL "https")
    set(CTEST_CURL_OPTIONS
        "CURLOPT_SSL_VERIFYPEER_OFF"
        "CURLOPT_SSL_VERIFYHOST_OFF"
    )
endif()