Revision bc5ff1f16f31aeb10c3a6867c97aa6f851274dfd authored by Christoph Lehmann on 25 September 2023, 15:13:27 UTC, committed by Christoph Lehmann on 25 September 2023, 15:13:27 UTC
Draft: RTP Acceleration Step 2: Compute linear solver only upon timestep change

See merge request ogs/ogs!4730
2 parent s 6081637 + 20694a6
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