Revision c7cef1a622cabb7f11847dd599706c875a0741b6 authored by Dmitry Yu. Naumov on 19 July 2023, 09:18:20 UTC, committed by Dmitry Yu. Naumov on 19 July 2023, 09:18:20 UTC
Extend THM  to TM-freezing

See merge request ogs/ogs!4642
2 parent s 3eb9bfd + 4ff27c0
Raw File
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