https://gitlab.opengeosys.org/ogs/ogs.git
Revision 7ecfc6af12c6dd0cc81e73d8ea4b52adca0b3457 authored by Lars Bilke on 31 March 2023, 11:59:25 UTC, committed by Dmitry Yu. Naumov on 03 April 2023, 17:57:38 UTC
1 parent 8a0c924
Raw File
Tip revision: 7ecfc6af12c6dd0cc81e73d8ea4b52adca0b3457 authored by Lars Bilke on 31 March 2023, 11:59:25 UTC
[ci] Run LARGE notebooks on arch and petsc test only.
Tip revision: 7ecfc6a
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