https://gitlab.opengeosys.org/ogs/ogs.git
Revision e89a09706c08a594acb0d8564f55d3c5868492d5 authored by Dmitri Naumov on 16 March 2023, 12:30:27 UTC, committed by Dmitry Yu. Naumov on 03 April 2023, 14:20:57 UTC
1 parent 03775f6
Raw File
Tip revision: e89a09706c08a594acb0d8564f55d3c5868492d5 authored by Dmitri Naumov on 16 March 2023, 12:30:27 UTC
[PL/THM] Generalize localDOF to any container
Tip revision: e89a097
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