Skip to content

Commit

Permalink
Merge pull request #16 from biodigitalmatter/tetov-patch-1
Browse files Browse the repository at this point in the history
remove depthai workaround for package not being released (earlier)
  • Loading branch information
tetov authored Sep 29, 2024
2 parents f97027b + 49d1a19 commit 7b46477
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@60a0d343a0d8a18aedee9d34e62251f752153bdb
uses: docker/metadata-action@70b2cdc6480c1a8b86edf1777157f8f437de2166
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

Expand Down
11 changes: 2 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,13 @@ RUN apt-get install -y \
iputils-ping \
net-tools \
python3-catkin-tools \
python3-pip \
python3-vcstool

RUN vcs import src < src/biodigitalmatter_ros/dependencies.repos
RUN vcs import src < src/abb_robot_driver/pkgs.repos

RUN rosdep install -y --from-paths . --ignore-src --rosdistro ${ROS_DISTRO} \
--skip-keys=depthai

# https://github.com/luxonis/depthai-ros/issues/540
RUN cd /tmp \
&& git clone --recursive https://github.com/luxonis/depthai-core.git --branch v2.24.0 \
&& cmake -Hdepthai-core -Bdepthai-core/build -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX=/usr/local \
&& cmake --build depthai-core/build --target install \
&& rm -r depthai-core
RUN rosdep install -y --from-paths . --ignore-src --rosdistro ${ROS_DISTRO}

RUN source /opt/ros/${ROS_DISTRO}/setup.bash && catkin build

Expand Down

0 comments on commit 7b46477

Please sign in to comment.