Revision 83c662b1fc8122f37a6908b8e0e659bc4d7a2f9e authored by Lars Bilke on 23 March 2023, 07:37:59 UTC, committed by Lars Bilke on 23 March 2023, 07:37:59 UTC
[cmake] Removed boost-mp11 from cpm (is part of Boost itself).

See merge request ogs/ogs!4537
2 parent s 032090c + c13a1b1
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