Revision 9dfd9e08882e2a6e1607e1f570f8227aeb376243 authored by Lars Bilke on 24 May 2023, 13:51:18 UTC, committed by Lars Bilke on 24 May 2023, 13:51:18 UTC
Draft: [ci] Added job 'build mac petsc arm64', used for notebooks too.

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