Revision 7de50f05f86396f8a9333cf34fd89ea3bf4246c5 authored by Tom Fischer on 21 July 2023, 07:49:56 UTC, committed by Tom Fischer on 21 July 2023, 07:49:56 UTC
Pass fixed output times to time stepper

See merge request ogs/ogs!4652
2 parent s 6fea0a8 + dcacbe1
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