Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[21828] Warn instead of fail when dds.communication.dynamic_interfaces cannot be built #5310

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/dds/communication/dyn_network/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ message(STATUS "Configuring dynamic network interfaces tests")
# Find docker
find_program(DOCKER_EXECUTABLE docker)
if(NOT DOCKER_EXECUTABLE)
message(FATAL_ERROR "Docker not found")
message(WARNING "Docker executable not found. dds.communication.dynamic_interfaces test won't be compiled.")
MiguelCompany marked this conversation as resolved.
Show resolved Hide resolved
return()
endif()

set(SHELL_EXECUTABLE "")
Expand Down
Loading