Revision defca8379dcc62d303ccfe4f571bb40de2c30f9f authored by wenqing on 24 May 2023, 08:11:57 UTC, committed by wenqing on 24 May 2023, 08:11:57 UTC
Numerical element volume calculation

See merge request ogs/ogs!4591
2 parent s ad7390e + ceb6497
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