Skip to content

Commit 927b54a

Browse files
authored
Ignore failures (#631)
1 parent 92740c9 commit 927b54a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cmake/AddQCWorkflow.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

5252
endfunction()

0 commit comments

Comments
 (0)