Revision cab0cf2f9fdd3e74b315040cfa8fb36b7b3476e6 authored by Lars Bilke on 31 March 2023, 14:33:11 UTC, committed by Dmitry Yu. Naumov on 03 April 2023, 14:31:36 UTC
1 parent 94d8be8
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