https://gitlab.opengeosys.org/ogs/ogs.git
Revision 4c967b158953641e16e0442f961c03f68f91fc16 authored by Christoph Lehmann on 29 March 2023, 14:56:15 UTC, committed by Christoph Lehmann on 05 April 2023, 06:42:20 UTC
1 parent 8826fe6
Raw File
Tip revision: 4c967b158953641e16e0442f961c03f68f91fc16 authored by Christoph Lehmann on 29 March 2023, 14:56:15 UTC
[T] removed id stuff from test
Tip revision: 4c967b1
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