cmake ctest_submit examples

Signatures

ctest_submit([PARTS <part>...] [FILES <file>...]
  [SUBMIT_URL <url>]
  [BUILD_ID <result-var>]
  [HTTPHEADER <header>]
  [RETRY_COUNT <count>]
  [RETRY_DELAY <delay>]
  [RETURN_VALUE <result-var>]
  [CAPTURE_CMAKE_ERROR <result-var>]
  [QUIET]
)

Examples

SCOREC/core cdash/nightly.cmake :199

ctest_submit(PARTS Update Configure Build Test
        RETRY_COUNT 4
        RETRY_DELAY 30
        RETURN_VALUE SUBMIT_ERROR)

gismo/gismo cmake/ctest_script.cmake :487

ctest_submit(PARTS Update RETRY_COUNT 3 RETRY_DELAY 3)

Exawind/amr-wind test/CTestNightlyScript.cmake :105

ctest_submit(RETRY_COUNT 20
             RETRY_DELAY 20
             RETURN_VALUE result)

sandialabs/Albany doc/legacy/LandIce/build/snl_helpers.cmake :21

ctest_submit(PARTS ${PART}
      RETRY_COUNT 3
      RETRY_DELAY 10
      RETURN_VALUE SUBMIT_ERR)

trilinos/Trilinos cmake/SimpleTesting/cmake/ctest-functions.cmake :31

ctest_submit(PARTS ${arg_parts_value}
                     RETRY_COUNT ${ctest_submit_retry_count}
                     RETRY_DELAY ${ctest_submit_retry_delay}
                     BUILD_ID    cdash_build_id
                     RETURN_VALUE ctest_submit_error
                     CAPTURE_CMAKE_ERROR ctest_submit_error)

MITK/MITK CMake/MITKDashboardScript.download.cmake :379

ctest_submit(${submit_url} ${http_header} RETRY_COUNT 3 RETRY_DELAY 5 PARTS ${ARG_PARTS})

SuperElastix/elastix Testing/Dashboard/elxDashboardCommon.cmake :239

ctest_submit(RETRY_COUNT 24 RETRY_DELAY 300)

Exawind/nalu-wind reg_tests/CTestNightlyScript.cmake :102

ctest_submit(RETRY_COUNT 20
             RETRY_DELAY 20
             RETURN_VALUE result)