Skip to content

Commit

Permalink
add vcs to docker and fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonR99 committed Jun 8, 2024
1 parent f09d0b4 commit be016a8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ RUN echo "source /opt/ros/${ROS_DISTRO}/setup.bash" >> ~/.bashrc

COPY --chown=$USERNAME ./ /workspace/$USERNAME

# Add needed packages
RUN vcs import src < rove.repos


# Rosdep update
RUN rosdep update

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:
docker compose build --build-arg USER_UID=$(id -u) --build-arg USER_GID=$(id -g)
- name: Build rove
run: |
docker compose run devcontainer bash -c "colcon build"
docker compose run devcontainer bash -c "colcon build --packages-ignore zed_components zed_wrapper"
2 changes: 1 addition & 1 deletion src/rove_slam/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
install_requires=['setuptools'],
zip_safe=True,
maintainer='rove',
maintainer_email='capra@etsmtl.ca',
maintainer_email='capra@ens.etsmtl.ca',
description='TODO: Package description',
license='TODO: License declaration',
tests_require=['pytest'],
Expand Down
2 changes: 1 addition & 1 deletion src/rove_zed/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
install_requires=['setuptools'],
zip_safe=True,
maintainer='rove',
maintainer_email='capra@etsmtl.ca',
maintainer_email='capra@ens.etsmtl.ca',
description='Zed package for rove',
license='MIT',
tests_require=['pytest'],
Expand Down

0 comments on commit be016a8

Please sign in to comment.