File: CTestConfig.cmake

package info (click to toggle)
camitk 3.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 391,128 kB
  • ctags: 9,706
  • sloc: cpp: 76,454; xml: 2,665; sh: 287; ansic: 142; makefile: 99; perl: 84; sed: 20
file content (19 lines) | stat: -rw-r--r-- 760 bytes parent folder | download | duplicates (2)
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 "camitkopensource")
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-opensource")
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()