https://gitlab.opengeosys.org/ogs/ogs.git
Revision 54d00999169f5efb54a9f12e1091317ecc887538 authored by Christoph Lehmann on 26 January 2023, 10:40:51 UTC, committed by Christoph Lehmann on 24 February 2023, 06:31:40 UTC
1 parent 6f75994
Raw File
Tip revision: 54d00999169f5efb54a9f12e1091317ecc887538 authored by Christoph Lehmann on 26 January 2023, 10:40:51 UTC
[T] Some improvements to the type setting
Tip revision: 54d0099
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