NOTE: colcon-bundle
only supports Ubuntu Xenial and Ubuntu Bionic operating systems and x86, ARMHF, and ARM64 architectures. All other operating systems and architectures are currently not supported.
This package is a plugin to colcon-core. It provides functionality to bundle a built workspace. A bundle is a portable environment which can be moved to a different linux system and executed as if the contents of the bundle were installed locally.
Currently, ROS Kinetic is supported by installing the colcon-ros-bundle
package.
In order to use colcon-bundle
execute the following (if you do not have root privileges you will need to run the pip3
commands with sudo
):
sudo apt-get install python3-apt python3-pip
sudo pip3 install -U setuptools pip
sudo pip3 install colcon-ros-bundle
colcon bundle
performs the following steps to bundle your package:
- Parse package dependencies through your
package.xml
. - Add dependencies to the install list for each installer.
- Run installs in the following order:
apt
pip
pip3
- Run the following transforms:
- Update the shebangs of scripts to use
#!/usr/bin/env
.
- Update the shebangs of scripts to use
- Bundle your local workspace and dependencies into a standalone ROS workspace.
The bundled workspace follows the format defined in
BUNDLE_FORMAT.md
.
To build your ROS workspace into a bundle execute:
colcon bundle
This will parse your dependencies, download apt and pip dependencies, install the dependencies into the bundle, and
then install your built workspace into the bundle. The final output is located at bundle/output.tar
The simplest way to get up and running without affecting your local development environment is to use Docker.
The contents of an example Dockerfile are below. Create the Dockerfile in your workspace and then execute:
docker build -t colcon-docker .
Once your docker image is built you can then run it with your local workspace mounted into the container by executing docker run -it -v <PATH_TO_WORKSPACE>:/workspace colcon-docker bash
. Once inside the docker container /workspace
will be bound to your local directory.
FROM ros:kinetic
RUN apt-get update && apt-get install -y python3-pip python3-apt
RUN pip3 install -U setuptools pip
RUN pip3 install colcon-ros-bundle
When colcon bundle
is executed in a ROS workspace it will create bundle/output.tar
that follows the specification located here.
A bundle is an entire application. In order to execute inside the bundle context follow the following steps:
- Extract the main archive.
- Extract
metadata.tar.gz
and look atoverlays.json
. - Extract each overlay listed in
overlays.json
. - In order execute
BUNDLE_CURRENT_PREFIX=<path to extracted overlay> source <path to extracted overlay>/setup.sh
- The bundle is now activated in your shell's environment.
When we create the bundle we choose not to include certain packages that are included by default in most
Linux distributions. To create this blacklist for Ubuntu apt list --installed | sed 's/^\(.*\)\/.*$/\1/'
was run on a base ubuntu:xenial container.
You can override this blacklist by using the --apt-package-blacklist
argument.
See DEVELOPMENT.md