https://gitlab.opengeosys.org/ogs/ogs.git
Revision 409ecd01dc49fbb07517d74249c39a7544a4060e authored by Lars Bilke on 13 March 2023, 15:02:36 UTC, committed by Dmitry Yu. Naumov on 03 April 2023, 14:31:36 UTC
1 parent 3f0c775
Raw File
Tip revision: 409ecd01dc49fbb07517d74249c39a7544a4060e authored by Lars Bilke on 13 March 2023, 15:02:36 UTC
[App] Removed #ifdef OGS_USE_PYTHON.
Tip revision: 409ecd0
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