https://gitlab.opengeosys.org/ogs/ogs.git
Revision 395d7338f44136893d237a0be6bdb8920fa649f3 authored by Lars Bilke on 09 October 2023, 11:48:21 UTC, committed by Lars Bilke on 10 October 2023, 09:11:31 UTC
1 parent 0e17a22
Raw File
Tip revision: 395d7338f44136893d237a0be6bdb8920fa649f3 authored by Lars Bilke on 09 October 2023, 11:48:21 UTC
markdownlint.
Tip revision: 395d733
CTestConfig.cmake
set(CTEST_PROJECT_NAME "ogs")
set(CTEST_NIGHTLY_START_TIME "01:00:00 UTC")
set(CTEST_SUBMIT_URL
    "https://cdash.opengeosys.org/submit.php?project=${CTEST_PROJECT_NAME}"
)
set(CTEST_SUBMIT_INACTIVITY_TIMEOUT 30)
if(DEFINED ENV{CI_JOB_NAME})
    # Bug in CDash: Remove ":", see
    # https://github.com/Kitware/CDash/issues/1292
    string(REPLACE ":" "" _build_name "$ENV{CI_JOB_NAME}")
    set(BUILDNAME ${_build_name})
endif()
back to top