This repository has been archived by the owner on Jan 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3642e5
commit e489b80
Showing
16 changed files
with
172 additions
and
60 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,35 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
apt-get update && apt-get install -y -q wget sudo lsb-release # for docker | ||
|
||
#before_install: | ||
sh -c "echo \"deb http://packages.ros.org/ros/ubuntu `lsb_release -sc` main\" > /etc/apt/sources.list.d/ros-latest.list" | ||
sh -c "echo \"deb http://realsense-alm-public.s3.amazonaws.com/apt-repo `lsb_release -sc` main\" > /etc/apt/sources.list.d/realsense-latest.list" | ||
wget http://packages.ros.org/ros.key -O - | apt-key add - | ||
apt-key adv --keyserver keys.gnupg.net --recv-key D6FB2970 | ||
apt-get update | ||
apt-get install -y python-catkin-pkg python-rosdep python-wstool ros-kinetic-catkin librealsense-object-recognition-dev librealsense-persontracking-dev librealsense-slam-dev libopencv-dev | ||
source /opt/ros/$ROS_DISTRO/setup.bash | ||
rosdep init | ||
rosdep update | ||
|
||
#install: | ||
mkdir -p ~/catkin_ws/src | ||
cd ~/catkin_ws/src | ||
catkin_init_workspace | ||
cd ~/catkin_ws | ||
catkin_make | ||
source devel/setup.bash | ||
cd ~/catkin_ws/src | ||
ln -s $CI_SOURCE_PATH . | ||
|
||
#before_script: | ||
cd ~/catkin_ws | ||
rosdep install -q -y -r --from-paths src --ignore-src --rosdistro $ROS_DISTRO | ||
|
||
#script: | ||
source /opt/ros/$ROS_DISTRO/setup.bash | ||
cd ~/catkin_ws | ||
catkin_make |
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,15 @@ | ||
sudo: required | ||
dist: trusty | ||
language: generic | ||
|
||
env: | ||
- ROS_DISTRO=kinetic | ||
|
||
before_install: | ||
- export CI_SOURCE_PATH=$(pwd) | ||
- export REPOSITORY_NAME=${PWD##*/} | ||
|
||
script: | ||
- echo "Testing branch $TRAVIS_BRANCH of $REPOSITORY_NAME" | ||
- docker run --rm -i -v $CI_SOURCE_PATH:$CI_SOURCE_PATH -e "CI_SOURCE_PATH=$CI_SOURCE_PATH" -e "HOME=$HOME" -e "ROS_DISTRO=$ROS_DISTRO" -t ubuntu:xenial sh -c "cd $CI_SOURCE_PATH; ./.travis.sh" | ||
|
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,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>realsense_ros_camera</name> | ||
<version>0.8.3</version> | ||
<version>0.8.4</version> | ||
<description>The realsense_ros_camera package</description> | ||
<maintainer email="[email protected]">Intel RealSense</maintainer> | ||
<license>Apache 2.0</license> | ||
|
@@ -15,6 +15,7 @@ | |
<build_depend>cv_bridge</build_depend> | ||
<build_depend>image_transport</build_depend> | ||
<build_depend>tf</build_depend> | ||
<build_depend>camera_info_manager</build_depend> | ||
<run_depend>image_transport</run_depend> | ||
<run_depend>cv_bridge</run_depend> | ||
<run_depend>nodelet</run_depend> | ||
|
@@ -24,6 +25,7 @@ | |
<run_depend>std_msgs</run_depend> | ||
<run_depend>message_runtime</run_depend> | ||
<run_depend>tf</run_depend> | ||
<run_depend>camera_info_manager</run_depend> | ||
<export> | ||
<nodelet plugin="${prefix}/nodelet_plugins.xml" /> | ||
</export> | ||
|
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
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,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>realsense_ros_object</name> | ||
<version>0.8.3</version> | ||
<version>0.8.4</version> | ||
<description>The realsense_ros_object package</description> | ||
<maintainer email="[email protected]">Intel RealSense</maintainer> | ||
<license>Apache 2.0</license> | ||
|
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,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>realsense_ros_person</name> | ||
<version>0.8.3</version> | ||
<version>0.8.4</version> | ||
<description>The realsense_ros_person package</description> | ||
<maintainer email="[email protected]">Intel RealSense</maintainer> | ||
<license>Apache 2.0</license> | ||
|
@@ -17,8 +17,6 @@ | |
<build_depend>roscpp_serialization</build_depend> | ||
<build_depend>rospy</build_depend> | ||
<build_depend>sensor_msgs</build_depend> | ||
<build_depend>realsense_msgs</build_depend> | ||
<build_depend>realsense_srvs</build_depend> | ||
<run_depend>cv_bridge</run_depend> | ||
<run_depend>image_transport</run_depend> | ||
<run_depend>message_filters</run_depend> | ||
|
@@ -27,7 +25,7 @@ | |
<run_depend>roscpp</run_depend> | ||
<run_depend>std_msgs</run_depend> | ||
<run_depend>rostime</run_depend> | ||
<run_depend>realsense_camera</run_depend> | ||
<run_depend>realsense_ros_camera</run_depend> | ||
<run_depend>roscpp_serialization</run_depend> | ||
<run_depend>rospy</run_depend> | ||
<run_depend>sensor_msgs</run_depend> | ||
|
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
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
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,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>realsense_ros_slam</name> | ||
<version>0.8.3</version> | ||
<version>0.8.4</version> | ||
<description>The realsense_ros_slam package</description> | ||
<maintainer email="[email protected]">Intel RealSense</maintainer> | ||
<license>Apache 2.0</license> | ||
|
@@ -17,6 +17,7 @@ | |
<build_depend>message_filters</build_depend> | ||
<build_depend>image_transport</build_depend> | ||
<build_depend>message_generation</build_depend> | ||
<build_depend>tf2_geometry_msgs</build_depend> | ||
<run_depend>message_runtime</run_depend> | ||
<run_depend>message_filters</run_depend> | ||
<run_depend>image_transport</run_depend> | ||
|
@@ -28,6 +29,7 @@ | |
<run_depend>rospy</run_depend> | ||
<run_depend>sensor_msgs</run_depend> | ||
<run_depend>std_msgs</run_depend> | ||
<run_depend>tf2_geometry_msgs</run_depend> | ||
<export> | ||
<nodelet plugin="${prefix}/nodelet_plugins.xml"/> | ||
</export> | ||
|
Oops, something went wrong.