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

Add jazzy build #12

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ros-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ros_distro: ["humble", "iron"]
ros_distro: ["jazzy", "humble", "iron"]

steps:

Expand Down
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
ARG ROS_DISTRO=humble
ARG PREFIX=
ARG MYDISTRO=ros

FROM husarnet/ros:${PREFIX}${ROS_DISTRO}-ros-base AS robot-models-builder
SHELL ["/bin/bash", "-c"]

ARG ROS_DISTRO
ARG PREFIX
ARG MYDISTRO

WORKDIR /ros2_ws/src

Expand All @@ -26,7 +28,10 @@ RUN git clone https://github.com/husarion/rosbot_ros.git && \
find open_manipulator_x -mindepth 1 -maxdepth 1 ! -name 'open_manipulator_x_description' -exec rm -r {} + && \
# ROSbot XL + manipulator setup
git clone https://github.com/husarion/rosbot_xl_manipulation_ros && \
find rosbot_xl_manipulation_ros -mindepth 1 -maxdepth 1 ! -name 'rosbot_xl_manipulation_description' -exec rm -r {} +
find rosbot_xl_manipulation_ros -mindepth 1 -maxdepth 1 ! -name 'rosbot_xl_manipulation_description' -exec rm -r {} + && \
# Luxonis cameras
git clone https://github.com/luxonis/depthai-ros.git && \
find depthai-ros -mindepth 1 -maxdepth 1 ! -name 'depthai_descriptions' -exec rm -r {} +

# ffmpeg image transport plugin
RUN apt update && apt install -y \
Expand Down Expand Up @@ -57,9 +62,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
# for ffmpeg image transport
ros-$ROS_DISTRO-cv-bridge \
# allows compressed and theora encoded streams to be received over image_transport
ros-$ROS_DISTRO-image-transport-plugins \
# DepthAI
ros-$ROS_DISTRO-depthai-descriptions && \
ros-$ROS_DISTRO-image-transport-plugins && \
apt-get upgrade -y && \
apt-get autoremove -y && \
apt-get clean && \
Expand Down
Loading