diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-08-09 15:59:32 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-08-09 15:59:32 (GMT) |
commit | 01c9aa1e76857bf22771342dadf87af08979aa33 (patch) | |
tree | 6d361ba9040e4126ae1a4095dc3db748393e046f /CTestConfig.cmake | |
parent | b5c6121a5d288264f9207fa48cbb132715ea546a (diff) | |
download | hdf5-01c9aa1e76857bf22771342dadf87af08979aa33.zip hdf5-01c9aa1e76857bf22771342dadf87af08979aa33.tar.gz hdf5-01c9aa1e76857bf22771342dadf87af08979aa33.tar.bz2 |
Update Drop Site options and Coverage settings
Diffstat (limited to 'CTestConfig.cmake')
-rw-r--r-- | CTestConfig.cmake | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/CTestConfig.cmake b/CTestConfig.cmake index 6bad67e..5b35688 100644 --- a/CTestConfig.cmake +++ b/CTestConfig.cmake @@ -19,12 +19,23 @@ set (CTEST_PROJECT_NAME "HDF5") set (CTEST_NIGHTLY_START_TIME "18:00:00 CST") set (CTEST_DROP_METHOD "http") -if (CDASH_LOCAL) - set (CTEST_DROP_SITE "cdash-internal.hdfgroup.org") - set (CTEST_DROP_LOCATION "/submit.php?project=HDF5Trunk") +if (CTEST_DROP_SITE_INIT) + set (CTEST_DROP_SITE "${CTEST_DROP_SITE_INIT}") else () - set (CTEST_DROP_SITE "cdash.hdfgroup.org") - set (CTEST_DROP_LOCATION "/submit.php?project=HDF5") + if (CDASH_LOCAL) + set (CTEST_DROP_SITE "cdash-internal.hdfgroup.org") + else () + set (CTEST_DROP_SITE "cdash.hdfgroup.org") + endif () +endif () +if (CTEST_DROP_LOCATION_INIT) + set (CTEST_DROP_LOCATION "${CTEST_DROP_LOCATION_INIT}") +else () + if (CDASH_LOCAL) + set (CTEST_DROP_LOCATION "/submit.php?project=HDF5Trunk") + else () + set (CTEST_DROP_LOCATION "/submit.php?project=HDF5") + endif () endif () set (CTEST_DROP_SITE_CDASH TRUE) |