https://gitlab.opengeosys.org/ogs/ogs.git
Revision 1f86a5ab8d39a7bfa0b0fb924151854ef5ee95af authored by Thomas Fischer on 26 January 2023, 10:58:56 UTC, committed by Thomas Fischer on 17 July 2023, 13:51:39 UTC
1 parent 0d93b69
Raw File
Tip revision: 1f86a5ab8d39a7bfa0b0fb924151854ef5ee95af authored by Thomas Fischer on 26 January 2023, 10:58:56 UTC
Adjusted time stepper pairs to make time steps exactly as in the old FixedTimeStepping algorithm
Tip revision: 1f86a5a
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