Lines Matching full:coveralls
26 # Param _COVERALLS_UPLOAD Upload the result to coveralls?
32 message("Coveralls: Using alternate CMake script dir: ${_CMAKE_SCRIPT_PATH}")
38 message(FATAL_ERROR "Coveralls: Missing ${_CMAKE_SCRIPT_PATH}/CoverallsClear.cmake")
42 message(FATAL_ERROR "Coveralls: Missing ${_CMAKE_SCRIPT_PATH}/CoverallsGenerateGcov.cmake")
59 set(COVERALLS_FILE ${PROJECT_BINARY_DIR}/coveralls.json)
70 # Generate Gcov and translate it into coveralls JSON.
81 COMMENT "Generating coveralls output..."
85 message("COVERALLS UPLOAD: ON")
90 message(FATAL_ERROR "Coveralls: curl not found! Aborting")
94 # Upload the JSON to coveralls.
97 https://coveralls.io/api/v1/jobs
102 COMMENT "Uploading coveralls output...")
104 add_custom_target(coveralls DEPENDS coveralls_upload) target
106 message("COVERALLS UPLOAD: OFF")
107 add_custom_target(coveralls DEPENDS coveralls_generate) target
114 …message(FATAL_ERROR "Coveralls: Code coverage results with an optimised (non-Debug) build may be m…