https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ee947e58ecfd276e2ac1c94e05fb0e37ce3a43e7 authored by Lars Bilke on 08 February 2023, 19:29:48 UTC
Merge branch 'cdash-build-name-fix' into 'master'
Tip revision: ee947e5
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