https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 4e4ded192e524dc01ae3e3a97e48f6230a2d445c authored by Dmitry Yu. Naumov on 05 May 2023, 20:43:26 UTC
Merge branch 'THM/SecondaryVarsOutput' into 'master'
Tip revision: 4e4ded1
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}"
)
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