Skip to content
This repository was archived by the owner on Sep 4, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
# For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)
sudo: required
dist: xenial
language: generic
env:
- ROS_DISTRO="kinetic"
install:
- git clone --depth 1 https://github.com/ros-industrial/industrial_ci.git .industrial_ci
- sudo apt update
- bash scripts/get_ros_deps.sh
- rosdep update
script:
- lsb_release -a; bash scripts/travis_script.sh
5 changes: 5 additions & 0 deletions rover_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

cd rover
catkin_make clean
catkin_make -j1
17 changes: 17 additions & 0 deletions scripts/get_ros_deps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash

# Script from:
# https://bluesat.atlassian.net/wiki/spaces/OWRT/pages/3211577/Getting+Started+with+Software
lsb_release -a
mkdir -p ~/ros_deps
cd ~/ros_deps
git clone https://github.com/bluesat/16_04_ros_deps.git src
cd src
git submodule init
git submodule update
cd ..
catkin_make -DGSTREAMER_VERSION_1_x=1
# echo "source ~/ros_deps/devel/setup.bash" >> ~/.bashrc
source ~/ros_deps/devel/setup.bash

# sudo apt install ros-kinetic-gazebo-ros-pkgs ros-kinetic-gazebo-ros-control
7 changes: 7 additions & 0 deletions scripts/travis_script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

ls
pwd
scripts/get_ros_deps.sh
cd rover
../.industrial_ci/ci.sh