Revision 221329da3b53298870aa8e09723cf88f0271edd4 authored by Lars Bilke on 14 March 2023, 07:48:57 UTC, committed by Lars Bilke on 14 March 2023, 07:48:57 UTC
Draft: Remove option OGS_USE_PYTHON

See merge request ogs/ogs!4521
2 parent s aa89b82 + f08b0cc
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}"
)
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