File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,17 +36,17 @@ function(o2_add_qc_workflow)
3636 message (STATUS "o2_add_qc_workflow called with config file ${PARSED_ARGS_CONFIG_FILE_PATH} to generate ${jsonDumpFile} " )
3737 set (qcExecutable o2-qc)
3838
39+ # note: we ignore failures because of past problems in the CI.
3940 add_custom_command (
4041 OUTPUT ${jsonDumpFile}
4142 VERBATIM
42- COMMAND echo "${qcExecutable} -b --config json://${PARSED_ARGS_CONFIG_FILE_PATH} --dump-workflow --dump-workflow-file ${jsonDumpFile} "
43- COMMAND ${qcExecutable} -b --config json://${PARSED_ARGS_CONFIG_FILE_PATH} --dump-workflow --dump-workflow-file ${jsonDumpFile}
43+ COMMAND echo "${qcExecutable} -b --config json://${PARSED_ARGS_CONFIG_FILE_PATH} --dump-workflow --dump-workflow-file ${jsonDumpFile} || true "
44+ COMMAND ${qcExecutable} -b --config json://${PARSED_ARGS_CONFIG_FILE_PATH} --dump-workflow --dump-workflow-file ${jsonDumpFile} || true
4445 DEPENDS ${qcExecutable} ${PARSED_ARGS_CONFIG_FILE_PATH} )
4546
4647 get_filename_component (filename ${jsonDumpFile} NAME_WE )
4748 add_custom_target (${filename} ALL DEPENDS ${jsonDumpFile} )
4849
49- # will install the rootmap and pcm files alongside the target's lib
5050 install (FILES ${jsonDumpFile} DESTINATION ${CMAKE_INSTALL_DATADIR} /dpl)
5151
5252endfunction ()
You can’t perform that action at this time.
0 commit comments