2016-01-18 14:57:27 -04:00
|
|
|
#!/bin/bash
|
|
|
|
# Install dependencies and configure the environment for CI build testing
|
|
|
|
|
2016-01-20 01:14:45 -04:00
|
|
|
set -ex
|
2016-01-18 14:57:27 -04:00
|
|
|
|
2016-05-17 02:16:42 -03:00
|
|
|
# Disable ccache for the configure phase, it's not worth it
|
|
|
|
export CCACHE_DISABLE="true"
|
|
|
|
|
2016-01-18 14:57:27 -04:00
|
|
|
ARM_ROOT="gcc-arm-none-eabi-4_9-2015q3"
|
|
|
|
ARM_TARBALL="$ARM_ROOT-20150921-linux.tar.bz2"
|
|
|
|
|
|
|
|
RPI_ROOT="master"
|
|
|
|
RPI_TARBALL="$RPI_ROOT.tar.gz"
|
|
|
|
|
2016-05-17 02:16:42 -03:00
|
|
|
CCACHE_ROOT="ccache-3.2.5"
|
2016-04-16 04:26:23 -03:00
|
|
|
CCACHE_TARBALL="$CCACHE_ROOT.tar.bz2"
|
|
|
|
|
2016-01-18 14:57:27 -04:00
|
|
|
mkdir -p $HOME/opt
|
2016-04-16 04:26:23 -03:00
|
|
|
pushd $HOME
|
2016-01-18 14:57:27 -04:00
|
|
|
|
|
|
|
# PX4 toolchain
|
2016-04-16 04:26:23 -03:00
|
|
|
dir=$ARM_ROOT
|
|
|
|
if [ ! -d "$HOME/opt/$dir" ]; then
|
2016-03-25 02:46:11 -03:00
|
|
|
wget http://firmware.ardupilot.org/Tools/PX4-tools/$ARM_TARBALL
|
2016-04-16 04:26:23 -03:00
|
|
|
tar -xf $ARM_TARBALL -C opt
|
2016-01-18 14:57:27 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# RPi/BBB toolchain
|
2016-04-16 04:26:23 -03:00
|
|
|
dir="tools-master/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64"
|
|
|
|
if [ ! -d "$HOME/opt/$dir" ]; then
|
2016-03-25 02:46:11 -03:00
|
|
|
wget http://firmware.ardupilot.org/Tools/Travis/NavIO/$RPI_TARBALL
|
2016-04-16 04:26:23 -03:00
|
|
|
tar -xf $RPI_TARBALL -C opt $dir
|
|
|
|
fi
|
|
|
|
|
|
|
|
# CCache
|
|
|
|
dir=$CCACHE_ROOT
|
|
|
|
if [ ! -d "$HOME/opt/$dir" ]; then
|
|
|
|
wget https://www.samba.org/ftp/ccache/$CCACHE_TARBALL
|
|
|
|
tar -xf $CCACHE_TARBALL
|
|
|
|
pushd $CCACHE_ROOT
|
|
|
|
./configure --prefix="/tmp" --bindir="$HOME/opt/$dir"
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
popd
|
2016-01-18 14:57:27 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
mkdir -p $HOME/bin
|
|
|
|
|
2016-04-14 20:27:09 -03:00
|
|
|
# symlink to compiler versions
|
|
|
|
ln -s /usr/bin/gcc-4.9 ~/bin/gcc
|
|
|
|
ln -s /usr/bin/g++-4.9 ~/bin/g++
|
|
|
|
ln -s /usr/bin/clang-3.7 ~/bin/clang
|
|
|
|
ln -s /usr/bin/clang++-3.7 ~/bin/clang++
|
|
|
|
ln -s /usr/bin/llvm-ar-3.7 ~/bin/llvm-ar
|
|
|
|
|
|
|
|
mkdir -p $HOME/ccache
|
2016-01-20 00:53:46 -04:00
|
|
|
|
2016-04-14 20:27:09 -03:00
|
|
|
# configure ccache
|
2016-04-16 04:26:23 -03:00
|
|
|
ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/g++
|
|
|
|
ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/gcc
|
|
|
|
ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/arm-none-eabi-g++
|
|
|
|
ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/arm-none-eabi-gcc
|
|
|
|
ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/arm-linux-gnueabihf-g++
|
|
|
|
ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/arm-linux-gnueabihf-gcc
|
2016-04-16 05:58:37 -03:00
|
|
|
ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/clang++
|
|
|
|
ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/clang
|
2016-04-14 20:27:09 -03:00
|
|
|
|
|
|
|
exportline="export PATH=$HOME/ccache"
|
|
|
|
exportline="${exportline}:$HOME/bin"
|
2016-10-13 13:45:18 -03:00
|
|
|
exportline="${exportline}:$HOME/.local/bin"
|
2016-03-08 20:55:21 -04:00
|
|
|
exportline="${exportline}:$HOME/opt/gcc-arm-none-eabi-4_9-2015q3/bin"
|
|
|
|
exportline="${exportline}:$HOME/opt/tools-master/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin"
|
2016-05-17 02:16:42 -03:00
|
|
|
exportline="${exportline}:$HOME/opt/$CCACHE_ROOT"
|
2016-01-20 00:53:46 -04:00
|
|
|
exportline="${exportline}:\$PATH"
|
|
|
|
|
|
|
|
if grep -Fxq "$exportline" ~/.profile; then
|
|
|
|
echo nothing to do;
|
|
|
|
else
|
|
|
|
echo $exportline >> ~/.profile;
|
|
|
|
fi
|
2016-01-18 14:57:27 -04:00
|
|
|
|
|
|
|
. ~/.profile
|
|
|
|
|
2016-11-06 23:34:52 -04:00
|
|
|
pip install --user -U argparse empy pyserial pexpect future lxml
|
|
|
|
pip install --user -U mavproxy
|