-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from b-it-bots/devel
Docs + simple generic gripper controller interface + minor bug fixes
- Loading branch information
Showing
91 changed files
with
3,556 additions
and
1,362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.git |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Default owners for everything in the repo. | ||
# Unless a later match takes precedence, they will be requested for review | ||
# when someone opens a pull request. | ||
* @argenos @alex-mitrevski | ||
|
||
mdr_perception @minhnh | ||
mdr_navigation @argenos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
FROM argenos/bitbots-base | ||
FROM bitbots/bitbots-domestic:kinetic | ||
|
||
RUN rosdep update | ||
WORKDIR /travis | ||
ADD ./ /travis/src/mas_domestic_robotics | ||
|
||
ADD ./ /kinetic/src/mas_domestic_robotics | ||
WORKDIR /kinetic | ||
|
||
RUN wstool init src && wstool merge -t src src/mas_domestic_robotics/.travis/travis.rosinstall | ||
RUN wstool update -t src | ||
RUN rosdep install --from-paths src --ignore-src --rosdistro=kinetic -y | ||
RUN . /opt/ros/mas_stable/setup.sh && \ | ||
catkin config --init && \ | ||
catkin config --extend /opt/ros/mas_stable && \ | ||
apt-get update -qq && \ | ||
rosdep update -qq && \ | ||
rosdep install -q --from-paths src --ignore-src --rosdistro=kinetic -y && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
catkin build --no-status |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
FROM argenos/bitbots-base | ||
FROM bitbots/bitbots-common:kinetic | ||
|
||
WORKDIR /kinetic | ||
COPY mas-domestic.rosinstall /kinetic | ||
|
||
RUN rosdep update | ||
RUN wstool init --shallow src && \ | ||
wstool merge -t src mas-domestic.rosinstall && \ | ||
cd src && \ | ||
wstool remove mas_domestic_robotics mas_common_robotics orocos_kinematics_dynamics kdl_parser && \ | ||
cd - && \ | ||
wstool update -t src | ||
|
||
RUN wstool init src && wstool merge -t src https://raw.githubusercontent.com/b-it-bots/mas_domestic_robotics/kinetic/mas-domestic.rosinstall | ||
RUN wstool update -t src | ||
RUN rosdep install --from-paths src --ignore-src --rosdistro=kinetic -y | ||
ADD . /kinetic/src/mas_domestic_robotics | ||
|
||
|
||
RUN . /opt/ros/mas_stable/setup.sh && \ | ||
apt-get update -qq && \ | ||
rosdep update -q && \ | ||
rosdep install --from-paths src --ignore-src --rosdistro=kinetic -y && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
catkin config --init && \ | ||
catkin config --extend /opt/ros/mas_stable && \ | ||
catkin config --install --install-space /opt/ros/mas_stable && \ | ||
catkin build && \ | ||
rm -rf /kinetic/ | ||
|
||
WORKDIR / | ||
ENTRYPOINT ["/ros_entrypoint.sh"] | ||
CMD ["bash"] |
Oops, something went wrong.