https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 7212ba039c2c9485df818af2dea9c573d9943819 authored by Christoph Lehmann on 23 February 2023, 10:41:56 UTC
Merge branch 'fix-point-heat-source-notebook-type-setting' into 'master'
Tip revision: 7212ba0
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