Revision dc18b81c7f8c0888df7624814cd06f0542578fa6 authored by Tom Fischer on 15 November 2023, 08:26:01 UTC, committed by Tom Fischer on 15 November 2023, 08:26:01 UTC
Improve parameter evaluation in Neumann-type boundary condition

See merge request ogs/ogs!4798
2 parent s a2a0f88 + 4620c83
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}"
)
set(CTEST_SUBMIT_INACTIVITY_TIMEOUT 30)
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