https://gitlab.opengeosys.org/ogs/ogs.git
Revision eadb895c4d4ed78fa72e6894a70b8fc26b94dcff authored by Lars Bilke on 11 April 2023, 09:48:29 UTC, committed by Lars Bilke on 11 April 2023, 09:48:29 UTC
[cmake,ci] Better third-party license collection

See merge request ogs/ogs!4561
2 parent s a5de98c + 4451acc
Raw File
Tip revision: eadb895c4d4ed78fa72e6894a70b8fc26b94dcff authored by Lars Bilke on 11 April 2023, 09:48:29 UTC
Merge branch 'better-license-file' into 'master'
Tip revision: eadb895
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