Revision 242bc524e0187af4a8704b148eb9705a4cb77e2f authored by wenqing on 22 February 2023, 10:41:59 UTC, committed by wenqing on 22 February 2023, 10:41:59 UTC
Fixed some falied LARGE parallel computing tests

See merge request ogs/ogs!4495
2 parent s ee6e3b4 + bcf7c9f
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