https://gitlab.opengeosys.org/ogs/ogs.git
Revision dd421cf86ba72e5289b0c3e5a695785c257c4eda authored by wenqing on 13 February 2023, 09:58:52 UTC, committed by wenqing on 13 February 2023, 09:58:52 UTC
[THM] A new benchmark: mini-benchmark1 of FE task force

See merge request ogs/ogs!4486
2 parent s 719d71d + 16759e4
Raw File
Tip revision: dd421cf86ba72e5289b0c3e5a695785c257c4eda authored by wenqing on 13 February 2023, 09:58:52 UTC
Merge branch 'FE_mini_benchmark1' into 'master'
Tip revision: dd421cf
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