Revision 652ad60247b0023bd9837db6a29f8d47413bfee1 authored by Christoph Lehmann on 24 August 2023, 07:23:25 UTC, committed by Christoph Lehmann on 24 August 2023, 07:23:25 UTC
Draft: RTP acceleration: assemble only once

See merge request ogs/ogs!4713
2 parent s 30ff596 + 741dc88
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