https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 0120c43ea75fc3fd2d0e1ad789a19b66b85e2908 authored by wenqing on 22 June 2023, 11:38:26 UTC
Merge branch 'impr_vapor_diffusion' into 'master'
Tip revision: 0120c43
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