Use docker image for jessie builds

This commit is contained in:
Cyryl Płotnicki 2016-09-20 22:43:09 +02:00
parent 9973bfd132
commit 226105439c
3 changed files with 20 additions and 19 deletions

View file

@ -6,7 +6,7 @@ script:
env:
- DETECTED_OS=fedora:24 DOCKER_IMAGE=cyplo/fedora24_base
- DETECTED_OS=debian:jessie NOUPGRADE=true
- DETECTED_OS=debian:jessie DOCKER_IMAGE=cyplo/jessie_base
- DETECTED_OS=ubuntu:trusty
- DETECTED_OS=ubuntu:xenial

View file

@ -29,7 +29,8 @@ echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /
echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get -y install mono-devel mono-complete
# install vim from sources
if [[ -z $NO_COMPILE_VIM ]]; then
VIM_BUILD_DIR=/tmp
cd "$VIM_BUILD_DIR"
git clone https://github.com/vim/vim.git
@ -37,18 +38,17 @@ cd vim
./configure --with-features=huge \
--enable-multibyte \
--enable-rubyinterp \
--enable-pythoninterp \
--with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu \
--enable-perlinterp \
--enable-python3interp=yes \
--enable-luainterp \
--enable-gui=gtk2 --enable-cscope --prefix=/usr
--enable-gui=no \
--enable-cscope
make -j2
sudo make install
cd
rm -fvr "$VIM_BUILD_DIR/vim"
fi
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DIR="$DIR/../"
DIR="$DIR" $DIR/common/configure_fresh_system

1
debian/test_insider vendored
View file

@ -5,6 +5,7 @@ set -e
export DEBIAN_FRONTEND=noninteractive
export DONT_CHANGE_SHELL=true
export NO_SYSTEMCTL=true
export NO_COMPILE_VIM=true
echo "APT::Acquire::Retries=16;" >> /etc/apt/apt.conf.d/99_retries