Skip to content

Commit dfe1fb7

Browse files
Apply suggestions
Signed-off-by: Juan Lopez Fernandez <juanlopez@eprosima.com>
1 parent 30a9ccf commit dfe1fb7

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/docker/vulcanexus/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ SHELL ["/bin/bash", "-c"]
1616
ARG docker_image_base
1717
RUN echo "Docker Base image used: ${docker_image_base}"
1818

19+
# TODO: Remove once external issue is solved
1920
# Update ROS 2 keys (not updated in the base image as of June 2025)
2021
RUN rm /etc/apt/sources.list.d/ros2-latest.list && \
2122
curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg && \

ddsrouter_test/compose/scripts/execute_and_validate_listener.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
import log
1818

19+
import os
20+
1921
import validation
2022

2123
DESCRIPTION = """Script to validate listeners output"""
@@ -72,7 +74,7 @@ def _listener_command(args):
7274
"""
7375
command = [
7476
'python3',
75-
'/opt/ros/jazzy/lib/demo_nodes_py/listener']
77+
f'/opt/ros/{os.environ["ROS_DISTRO"]}/lib/demo_nodes_py/listener']
7678

7779
return command
7880

ddsrouter_test/compose/scripts/execute_and_validate_talker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
import log
1818

19+
import os
20+
1921
import validation
2022

2123
DESCRIPTION = """Script to validate talkers output"""
@@ -67,7 +69,7 @@ def _talker_command(args):
6769
"""
6870
command = [
6971
'python3',
70-
'/opt/ros/jazzy/lib/demo_nodes_py/talker']
72+
f'/opt/ros/{os.environ["ROS_DISTRO"]}/lib/demo_nodes_py/talker']
7173

7274
return command
7375

0 commit comments

Comments
 (0)