https://gitlab.opengeosys.org/ogs/ogs.git
Revision 5287730747449c92cfe1027e5a20300e4bbe3be3 authored by Lars Bilke on 24 February 2023, 15:14:51 UTC, committed by Lars Bilke on 24 February 2023, 15:14:51 UTC
[ci] Introduce MR label ci_large for enabling large tests.

See merge request ogs/ogs!4491
2 parent s c47fe99 + 40224e1
Raw File
Tip revision: 5287730747449c92cfe1027e5a20300e4bbe3be3 authored by Lars Bilke on 24 February 2023, 15:14:51 UTC
Merge branch 'ci_large-label' into 'master'
Tip revision: 5287730
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