Revision 121ef11f0a630eb4e6bd79c429bbbd97b8534aa1 authored by tnagel on 05 March 2023, 08:35:47 UTC, committed by Dmitri Naumov on 28 November 2023, 23:47:38 UTC
Extracting function to load MFront behaviour and extending
it to load the small strains as well as the finite strains
models.
1 parent fb19014
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