Revision 77c1a5b08106290b275faaa1c11aff1c995c8b34 authored by Lars Bilke on 03 May 2023, 13:33:48 UTC, committed by Lars Bilke on 03 May 2023, 13:33:48 UTC
[py] Update PyVista to 0.38.6.

See merge request ogs/ogs!4589
2 parent s 3ce5644 + 828943f
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