Adds Kinetic to build matrix. (#222)
parent
28d890e844
commit
fe936b67b1
|
@ -0,0 +1,4 @@
|
||||||
|
**/Dockerfile*
|
||||||
|
**/.dockerignore
|
||||||
|
**/.git
|
||||||
|
**/.travis.yml
|
|
@ -20,12 +20,15 @@ services: docker
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- /home/travis/docker/
|
- /home/travis/docker/
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
matrix:
|
||||||
- DOCKER_CACHE_FILE=/home/travis/docker/cache.tar.gz
|
- ROS_RELEASE=indigo DOCKER_CACHE_FILE=/home/travis/docker/indigo-cache.tar.gz
|
||||||
|
- ROS_RELEASE=kinetic DOCKER_CACHE_FILE=/home/travis/docker/kinetic-cache.tar.gz
|
||||||
|
|
||||||
before_install: scripts/load_docker_cache.sh
|
before_install: scripts/load_docker_cache.sh
|
||||||
|
|
||||||
install: true
|
install: true
|
||||||
script:
|
script:
|
||||||
- docker build ${TRAVIS_BUILD_DIR} -t cartographer_ros
|
- docker build ${TRAVIS_BUILD_DIR} -t cartographer_ros:${ROS_RELEASE} -f Dockerfile.${ROS_RELEASE}
|
||||||
- scripts/save_docker_cache.sh
|
- scripts/save_docker_cache.sh
|
||||||
|
|
|
@ -35,7 +35,9 @@ COPY cartographer_rviz/package.xml catkin_ws/src/cartographer_ros/cartographer_r
|
||||||
COPY scripts/install_debs.sh cartographer_ros/scripts/
|
COPY scripts/install_debs.sh cartographer_ros/scripts/
|
||||||
RUN cartographer_ros/scripts/install_debs.sh && rm -rf /var/lib/apt/lists/*
|
RUN cartographer_ros/scripts/install_debs.sh && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Build, install, and test all packages individually to allow caching.
|
# Build, install, and test all packages individually to allow caching. The
|
||||||
|
# ordering of these steps must match the topological package ordering as
|
||||||
|
# determined by Catkin.
|
||||||
COPY scripts/install.sh cartographer_ros/scripts/
|
COPY scripts/install.sh cartographer_ros/scripts/
|
||||||
COPY scripts/catkin_test_results.sh cartographer_ros/scripts/
|
COPY scripts/catkin_test_results.sh cartographer_ros/scripts/
|
||||||
|
|
|
@ -0,0 +1,73 @@
|
||||||
|
# Copyright 2016 The Cartographer Authors
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
FROM ros:kinetic
|
||||||
|
|
||||||
|
# Xenial's base image doesn't ship with sudo.
|
||||||
|
RUN apt-get update && apt-get install -y sudo && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# First, we invalidate the entire cache if googlecartographer/cartographer has
|
||||||
|
# changed. This file's content changes whenever master changes. See:
|
||||||
|
# http://stackoverflow.com/questions/36996046/how-to-prevent-dockerfile-caching-git-clone
|
||||||
|
ADD https://api.github.com/repos/googlecartographer/cartographer/git/refs/heads/master \
|
||||||
|
cartographer_ros/cartographer_version.json
|
||||||
|
|
||||||
|
# wstool needs the updated rosinstall file to clone the correct repos.
|
||||||
|
COPY cartographer_ros.rosinstall cartographer_ros/
|
||||||
|
COPY scripts/prepare_catkin_workspace.sh cartographer_ros/scripts/
|
||||||
|
# Remove the contents of the cartographer_ros repo and copy in the updated
|
||||||
|
# files as necessary.
|
||||||
|
RUN cartographer_ros/scripts/prepare_catkin_workspace.sh && \
|
||||||
|
rm -rf catkin_ws/src/cartographer_ros/*
|
||||||
|
|
||||||
|
# rosdep needs the updated package.xml files to install the correct debs.
|
||||||
|
COPY cartographer_ros/package.xml catkin_ws/src/cartographer_ros/cartographer_ros/
|
||||||
|
COPY cartographer_ros_msgs/package.xml catkin_ws/src/cartographer_ros/cartographer_ros_msgs/
|
||||||
|
COPY cartographer_rviz/package.xml catkin_ws/src/cartographer_ros/cartographer_rviz/
|
||||||
|
COPY scripts/install_debs.sh cartographer_ros/scripts/
|
||||||
|
RUN cartographer_ros/scripts/install_debs.sh && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Build, install, and test all packages individually to allow caching. The
|
||||||
|
# ordering of these steps must match the topological package ordering as
|
||||||
|
# determined by Catkin.
|
||||||
|
COPY scripts/install.sh cartographer_ros/scripts/
|
||||||
|
COPY scripts/catkin_test_results.sh cartographer_ros/scripts/
|
||||||
|
|
||||||
|
RUN cartographer_ros/scripts/install.sh --pkg ceres-solver
|
||||||
|
|
||||||
|
RUN cartographer_ros/scripts/install.sh --pkg cartographer && \
|
||||||
|
cartographer_ros/scripts/install.sh --pkg cartographer --make-args test
|
||||||
|
|
||||||
|
COPY cartographer_ros_msgs catkin_ws/src/cartographer_ros/cartographer_ros_msgs/
|
||||||
|
RUN cartographer_ros/scripts/install.sh --pkg cartographer_ros_msgs && \
|
||||||
|
cartographer_ros/scripts/install.sh --pkg cartographer_ros_msgs \
|
||||||
|
--catkin-make-args run_tests && \
|
||||||
|
cartographer_ros/scripts/catkin_test_results.sh build_isolated/cartographer_ros_msgs
|
||||||
|
|
||||||
|
COPY cartographer_ros catkin_ws/src/cartographer_ros/cartographer_ros/
|
||||||
|
RUN cartographer_ros/scripts/install.sh --pkg cartographer_ros && \
|
||||||
|
cartographer_ros/scripts/install.sh --pkg cartographer_ros \
|
||||||
|
--catkin-make-args run_tests && \
|
||||||
|
cartographer_ros/scripts/catkin_test_results.sh build_isolated/cartographer_ros
|
||||||
|
|
||||||
|
COPY cartographer_rviz catkin_ws/src/cartographer_ros/cartographer_rviz/
|
||||||
|
RUN cartographer_ros/scripts/install.sh --pkg cartographer_rviz && \
|
||||||
|
cartographer_ros/scripts/install.sh --pkg cartographer_rviz \
|
||||||
|
--catkin-make-args run_tests && \
|
||||||
|
cartographer_ros/scripts/catkin_test_results.sh build_isolated/cartographer_rviz
|
||||||
|
|
||||||
|
COPY scripts/ros_entrypoint.sh /
|
||||||
|
# A BTRFS bug may prevent us from cleaning up these directories.
|
||||||
|
# https://btrfs.wiki.kernel.org/index.php/Problem_FAQ#I_cannot_delete_an_empty_directory
|
||||||
|
RUN rm -rf cartographer_ros catkin_ws || true
|
|
@ -20,12 +20,14 @@ set(PACKAGE_DEPENDENCIES
|
||||||
cartographer_ros_msgs
|
cartographer_ros_msgs
|
||||||
eigen_conversions
|
eigen_conversions
|
||||||
geometry_msgs
|
geometry_msgs
|
||||||
|
message_runtime
|
||||||
nav_msgs
|
nav_msgs
|
||||||
pcl_conversions
|
pcl_conversions
|
||||||
rosbag
|
rosbag
|
||||||
roscpp
|
roscpp
|
||||||
roslib
|
roslib
|
||||||
sensor_msgs
|
sensor_msgs
|
||||||
|
std_msgs
|
||||||
tf2
|
tf2
|
||||||
tf2_eigen
|
tf2_eigen
|
||||||
tf2_ros
|
tf2_ros
|
||||||
|
@ -41,7 +43,7 @@ google_enable_testing()
|
||||||
find_package(catkin REQUIRED COMPONENTS ${PACKAGE_DEPENDENCIES})
|
find_package(catkin REQUIRED COMPONENTS ${PACKAGE_DEPENDENCIES})
|
||||||
|
|
||||||
include(FindPkgConfig)
|
include(FindPkgConfig)
|
||||||
PKG_SEARCH_MODULE(YAMLCPP REQUIRED yaml-cpp>=0.5.1)
|
pkg_search_module(YAMLCPP REQUIRED yaml-cpp>=0.5.1)
|
||||||
|
|
||||||
find_package(PCL REQUIRED COMPONENTS common io)
|
find_package(PCL REQUIRED COMPONENTS common io)
|
||||||
find_package(Eigen3 REQUIRED)
|
find_package(Eigen3 REQUIRED)
|
||||||
|
@ -54,14 +56,20 @@ if(DEFINED urdfdom_headers_VERSION)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${urdfdom_headers_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
catkin_package(
|
catkin_package(
|
||||||
CATKIN_DEPENDS
|
CATKIN_DEPENDS
|
||||||
message_runtime
|
|
||||||
${PACKAGE_DEPENDENCIES}
|
${PACKAGE_DEPENDENCIES}
|
||||||
DEPENDS
|
DEPENDS
|
||||||
|
CARTOGRAPHER
|
||||||
|
YAMLCPP
|
||||||
PCL
|
PCL
|
||||||
Eigen3
|
EIGEN3
|
||||||
Boost
|
Boost
|
||||||
|
urdfdom_headers
|
||||||
INCLUDE_DIRS "."
|
INCLUDE_DIRS "."
|
||||||
LIBRARIES ${PROJECT_NAME}
|
LIBRARIES ${PROJECT_NAME}
|
||||||
)
|
)
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
|
|
||||||
<depend>cartographer</depend>
|
<depend>cartographer</depend>
|
||||||
<depend>cartographer_ros_msgs</depend>
|
<depend>cartographer_ros_msgs</depend>
|
||||||
|
|
||||||
<depend>eigen_conversions</depend>
|
<depend>eigen_conversions</depend>
|
||||||
<depend>geometry_msgs</depend>
|
<depend>geometry_msgs</depend>
|
||||||
<depend>libgflags-dev</depend>
|
<depend>libgflags-dev</depend>
|
||||||
|
|
|
@ -16,11 +16,15 @@ cmake_minimum_required(VERSION 2.8.3)
|
||||||
|
|
||||||
project(cartographer_ros_msgs)
|
project(cartographer_ros_msgs)
|
||||||
|
|
||||||
find_package(Cartographer REQUIRED)
|
set(PACKAGE_DEPENDENCIES
|
||||||
|
geometry_msgs
|
||||||
|
)
|
||||||
|
|
||||||
|
find_package(cartographer REQUIRED)
|
||||||
include("${CARTOGRAPHER_CMAKE_DIR}/functions.cmake")
|
include("${CARTOGRAPHER_CMAKE_DIR}/functions.cmake")
|
||||||
google_initialize_cartographer_project()
|
google_initialize_cartographer_project()
|
||||||
|
|
||||||
find_package(catkin REQUIRED COMPONENTS geometry_msgs message_generation)
|
find_package(catkin REQUIRED COMPONENTS message_generation ${PACKAGE_DEPENDENCIES})
|
||||||
|
|
||||||
add_message_files(
|
add_message_files(
|
||||||
FILES
|
FILES
|
||||||
|
@ -40,4 +44,7 @@ generate_messages(
|
||||||
geometry_msgs
|
geometry_msgs
|
||||||
)
|
)
|
||||||
|
|
||||||
catkin_package()
|
catkin_package(
|
||||||
|
CATKIN_DEPENDS
|
||||||
|
${PACKAGE_DEPENDENCIES}
|
||||||
|
)
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
<buildtool_depend>catkin</buildtool_depend>
|
<buildtool_depend>catkin</buildtool_depend>
|
||||||
|
|
||||||
<depend>cartographer</depend>
|
<depend>cartographer</depend>
|
||||||
|
<depend>geometry_msgs</depend>
|
||||||
|
|
||||||
<build_depend>message_generation</build_depend>
|
<build_depend>message_generation</build_depend>
|
||||||
</package>
|
</package>
|
||||||
|
|
|
@ -19,11 +19,13 @@ project(cartographer_rviz)
|
||||||
set(PACKAGE_DEPENDENCIES
|
set(PACKAGE_DEPENDENCIES
|
||||||
cartographer_ros_msgs
|
cartographer_ros_msgs
|
||||||
eigen_conversions
|
eigen_conversions
|
||||||
|
message_runtime
|
||||||
roscpp
|
roscpp
|
||||||
|
roslib
|
||||||
rviz
|
rviz
|
||||||
)
|
)
|
||||||
|
|
||||||
find_package(Cartographer REQUIRED)
|
find_package(cartographer REQUIRED)
|
||||||
include("${CARTOGRAPHER_CMAKE_DIR}/functions.cmake")
|
include("${CARTOGRAPHER_CMAKE_DIR}/functions.cmake")
|
||||||
google_initialize_cartographer_project()
|
google_initialize_cartographer_project()
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,6 @@
|
||||||
|
|
||||||
<depend>cartographer</depend>
|
<depend>cartographer</depend>
|
||||||
<depend>cartographer_ros_msgs</depend>
|
<depend>cartographer_ros_msgs</depend>
|
||||||
|
|
||||||
<depend>eigen_conversions</depend>
|
<depend>eigen_conversions</depend>
|
||||||
<depend>libqt5-core</depend>
|
<depend>libqt5-core</depend>
|
||||||
<depend>libqt5-gui</depend>
|
<depend>libqt5-gui</depend>
|
||||||
|
|
|
@ -24,6 +24,6 @@ set -o pipefail
|
||||||
if [[ ${TRAVIS_BRANCH} == "master" ]] &&
|
if [[ ${TRAVIS_BRANCH} == "master" ]] &&
|
||||||
[[ ${TRAVIS_PULL_REQUEST} == "false" ]]; then
|
[[ ${TRAVIS_PULL_REQUEST} == "false" ]]; then
|
||||||
mkdir -p $(dirname ${DOCKER_CACHE_FILE});
|
mkdir -p $(dirname ${DOCKER_CACHE_FILE});
|
||||||
docker save $(docker history -q cartographer_ros |
|
docker save $(docker history -q cartographer_ros:${ROS_RELEASE} |
|
||||||
grep -v '<missing>') | gzip > ${DOCKER_CACHE_FILE};
|
grep -v '<missing>') | gzip > ${DOCKER_CACHE_FILE};
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue