Remove support for Debian Jessie. (#1496)
It has reached end-of-life with the end of LTS on June 30, 2020. Signed-off-by: Wolfgang Hess <whess@lyft.com>master
parent
be4332b338
commit
ec29019962
|
@ -17,26 +17,14 @@
|
||||||
set -o errexit
|
set -o errexit
|
||||||
set -o verbose
|
set -o verbose
|
||||||
|
|
||||||
# Install CMake 3.2 for Debian Jessie.
|
# Install CMake, Ninja, stow.
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install lsb-release -y
|
sudo apt-get install -y lsb-release cmake ninja-build stow
|
||||||
if [[ "$(lsb_release -sc)" = "jessie" ]]
|
|
||||||
then
|
|
||||||
sudo sh -c "echo 'deb http://ftp.debian.org/debian jessie-backports main' >> /etc/apt/sources.list"
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get -t jessie-backports install cmake -y
|
|
||||||
else
|
|
||||||
sudo apt-get install cmake -y
|
|
||||||
fi
|
|
||||||
|
|
||||||
. /opt/ros/${ROS_DISTRO}/setup.sh
|
. /opt/ros/${ROS_DISTRO}/setup.sh
|
||||||
|
|
||||||
cd catkin_ws
|
cd catkin_ws
|
||||||
|
|
||||||
# Install Ninja and stow.
|
|
||||||
apt-get update
|
|
||||||
apt-get install -y ninja-build stow
|
|
||||||
|
|
||||||
# Install rosdep dependencies.
|
# Install rosdep dependencies.
|
||||||
rosdep update
|
rosdep update
|
||||||
rosdep install --from-paths src --ignore-src --rosdistro=${ROS_DISTRO} -y
|
rosdep install --from-paths src --ignore-src --rosdistro=${ROS_DISTRO} -y
|
||||||
|
|
Loading…
Reference in New Issue