Revision 65ea882f2ffe4a2006542d2869ed9d4720904914 authored by Lars Bilke on 13 June 2023, 11:54:09 UTC, committed by Lars Bilke on 13 June 2023, 11:54:09 UTC
E.g. for having the markdownlint check.
1 parent 91cc4d0
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}"
)
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