https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 6e37ef7556b79c7ec64a1e11269856a4f7015f8d authored by Christoph Lehmann on 07 August 2023, 07:26:43 UTC
Merge branch 'trm-prev-states' into 'master'
Tip revision: 6e37ef7
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