Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 3 additions & 4 deletions .github/docker/vulcanexus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ RUN echo "Docker Base image used: ${docker_image_base}"
RUN source "/opt/vulcanexus/$VULCANEXUS_DISTRO/setup.bash" && \
apt-get update && \
apt-get install -y \
ros-humble-example-interfaces \
ros-humble-example-interfaces \
ros-humble-demo-nodes-cpp \
ros-humble-demo-nodes-py
ros-$VULCANEXUS_DISTRO-example-interfaces \
ros-$VULCANEXUS_DISTRO-demo-nodes-cpp \
ros-$VULCANEXUS_DISTRO-demo-nodes-py

# Copy and use run.bash as entrypoint
COPY run.bash /root/run.bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-reusable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
cd ./src/.github/docker/vulcanexus
docker build \
--no-cache \
--build-arg docker_image_base=eprosima/vulcanexus:humble-core \
--build-arg docker_image_base=eprosima/vulcanexus:jazzy-core \
-t ${{ env.DDSROUTER_COMPOSE_TEST_ROS2_DOCKER_IMAGE }} \
-f Dockerfile .

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

import log

import os

import validation

DESCRIPTION = """Script to validate listeners output"""
Expand Down Expand Up @@ -72,7 +74,7 @@ def _listener_command(args):
"""
command = [
'python3',
'/opt/ros/humble/lib/demo_nodes_py/listener']
f'/opt/ros/{os.environ["ROS_DISTRO"]}/lib/demo_nodes_py/listener']

return command

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

import log

import os

import validation

DESCRIPTION = """Script to validate talkers output"""
Expand Down Expand Up @@ -67,7 +69,7 @@ def _talker_command(args):
"""
command = [
'python3',
'/opt/ros/humble/lib/demo_nodes_py/talker']
f'/opt/ros/{os.environ["ROS_DISTRO"]}/lib/demo_nodes_py/talker']

return command

Expand Down
Loading