2015-09-12 20:13:17 +03:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
2015-09-30 18:42:20 +03:00
|
|
|
# Automated creation of testing environments / binaries on misc. platforms
|
2015-09-16 00:45:12 +03:00
|
|
|
|
2017-06-02 03:29:05 +03:00
|
|
|
$cpus = Integer(ENV.fetch('VMCPUS', '4')) # create VMs with that many cpus
|
|
|
|
$xdistn = Integer(ENV.fetch('XDISTN', '4')) # dispatch tests to that many pytest workers
|
|
|
|
$wmem = $xdistn * 256 # give the VM additional memory for workers [MB]
|
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def packages_debianoid
|
2015-09-20 23:22:40 +03:00
|
|
|
return <<-EOF
|
2016-07-14 22:03:49 +03:00
|
|
|
if id "vagrant" >/dev/null 2>&1; then
|
|
|
|
username='vagrant'
|
|
|
|
home_dir=/home/vagrant
|
|
|
|
else
|
|
|
|
username='ubuntu'
|
|
|
|
home_dir=/home/ubuntu
|
|
|
|
fi
|
2015-09-28 01:05:52 +03:00
|
|
|
apt-get update
|
2016-03-05 22:12:28 +03:00
|
|
|
# install all the (security and other) updates
|
|
|
|
apt-get dist-upgrade -y
|
2015-09-28 01:05:52 +03:00
|
|
|
# for building borgbackup and dependencies:
|
|
|
|
apt-get install -y libssl-dev libacl1-dev liblz4-dev libfuse-dev fuse pkg-config
|
2016-07-14 22:03:49 +03:00
|
|
|
usermod -a -G fuse $username
|
2016-09-04 04:01:29 +03:00
|
|
|
chgrp fuse /dev/fuse
|
|
|
|
chmod 666 /dev/fuse
|
2015-09-28 01:05:52 +03:00
|
|
|
apt-get install -y fakeroot build-essential git
|
|
|
|
apt-get install -y python3-dev python3-setuptools
|
2015-10-03 04:10:12 +03:00
|
|
|
# for building python:
|
2015-10-03 04:21:56 +03:00
|
|
|
apt-get install -y zlib1g-dev libbz2-dev libncurses5-dev libreadline-dev liblzma-dev libsqlite3-dev
|
2017-07-30 03:01:10 +03:00
|
|
|
easy_install3 'pip'
|
|
|
|
pip3 install 'virtualenv'
|
2016-07-14 22:03:49 +03:00
|
|
|
touch $home_dir/.bash_profile ; chown $username $home_dir/.bash_profile
|
2015-09-12 20:13:17 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2017-08-01 05:46:31 +03:00
|
|
|
def packages_arch
|
|
|
|
return <<-EOF
|
|
|
|
chown vagrant.vagrant /vagrant
|
|
|
|
pacman --sync --noconfirm python-virtualenv python-pip
|
|
|
|
touch ~vagrant/.bash_profile ; chown vagrant ~vagrant/.bash_profile
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def install_pyenv(boxname)
|
2017-06-02 03:29:05 +03:00
|
|
|
script = <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
|
2017-07-30 03:01:10 +03:00
|
|
|
echo 'export PATH="$HOME/.pyenv/bin:$PATH"' >> ~/.bash_profile
|
2015-09-28 01:05:52 +03:00
|
|
|
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
|
|
|
|
echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile
|
|
|
|
echo 'export PYTHON_CONFIGURE_OPTS="--enable-shared"' >> ~/.bash_profile
|
2015-12-09 02:55:48 +03:00
|
|
|
echo 'export LANG=en_US.UTF-8' >> ~/.bash_profile
|
2015-09-12 20:13:17 +03:00
|
|
|
EOF
|
2017-06-02 03:29:05 +03:00
|
|
|
script += "echo 'export XDISTN=%d' >> ~/.bash_profile\n" % [$xdistn]
|
|
|
|
return script
|
2015-09-12 20:13:17 +03:00
|
|
|
end
|
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def fix_pyenv_darwin(boxname)
|
2015-09-12 20:13:17 +03:00
|
|
|
return <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
echo 'export PYTHON_CONFIGURE_OPTS="--enable-framework"' >> ~/.bash_profile
|
|
|
|
EOF
|
|
|
|
end
|
2015-09-12 20:13:17 +03:00
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def install_pythons(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
pyenv install 3.5.0 # tests
|
2017-01-04 03:06:57 +03:00
|
|
|
pyenv install 3.6.0 # tests
|
2017-01-19 20:58:14 +03:00
|
|
|
pyenv install 3.5.3 # binary build, use latest 3.5.x release
|
2015-09-28 01:05:52 +03:00
|
|
|
pyenv rehash
|
|
|
|
EOF
|
|
|
|
end
|
2015-09-13 19:05:03 +03:00
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def build_sys_venv(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
2015-09-12 20:13:17 +03:00
|
|
|
cd /vagrant/borg
|
2015-09-16 00:45:12 +03:00
|
|
|
virtualenv --python=python3 borg-env
|
2015-09-28 01:05:52 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_pyenv_venv(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
|
|
|
# use the latest 3.5 release
|
2017-01-19 20:58:14 +03:00
|
|
|
pyenv global 3.5.3
|
|
|
|
pyenv virtualenv 3.5.3 borg-env
|
2015-09-28 01:05:52 +03:00
|
|
|
ln -s ~/.pyenv/versions/borg-env .
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2016-11-24 06:03:54 +03:00
|
|
|
def install_borg(fuse)
|
|
|
|
script = <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
2015-09-12 20:13:17 +03:00
|
|
|
. borg-env/bin/activate
|
2015-09-28 01:05:52 +03:00
|
|
|
pip install -U wheel # upgrade wheel, too old for 3.5
|
2015-09-12 20:13:17 +03:00
|
|
|
cd borg
|
2015-09-28 01:05:52 +03:00
|
|
|
# clean up (wrong/outdated) stuff we likely got via rsync:
|
2017-06-02 07:12:30 +03:00
|
|
|
rm -rf __pycache__
|
2017-06-12 04:04:31 +03:00
|
|
|
find src -name '__pycache__' -exec rm -rf {} \\;
|
2015-09-12 20:13:17 +03:00
|
|
|
pip install -r requirements.d/development.txt
|
2017-06-02 07:12:30 +03:00
|
|
|
python setup.py clean
|
2016-06-29 02:04:24 +03:00
|
|
|
EOF
|
2016-11-24 06:03:54 +03:00
|
|
|
if fuse
|
|
|
|
script += <<-EOF
|
2017-06-24 02:24:14 +03:00
|
|
|
# by using [fuse], setup.py can handle different FUSE requirements:
|
2016-11-24 06:03:54 +03:00
|
|
|
pip install -e .[fuse]
|
|
|
|
EOF
|
|
|
|
else
|
|
|
|
script += <<-EOF
|
|
|
|
pip install -e .
|
|
|
|
# do not install llfuse into the virtualenvs built by tox:
|
|
|
|
sed -i.bak '/fuse.txt/d' tox.ini
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
return script
|
2016-06-29 02:04:24 +03:00
|
|
|
end
|
|
|
|
|
2017-01-16 10:10:08 +03:00
|
|
|
def install_pyinstaller()
|
|
|
|
return <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
|
|
|
. borg-env/bin/activate
|
2016-09-14 04:11:11 +03:00
|
|
|
git clone https://github.com/thomaswaldmann/pyinstaller.git
|
2015-09-28 01:05:52 +03:00
|
|
|
cd pyinstaller
|
2017-01-16 08:31:12 +03:00
|
|
|
git checkout v3.2.1
|
2017-01-16 10:10:08 +03:00
|
|
|
python setup.py install
|
2015-09-28 01:05:52 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_binary_with_pyinstaller(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
|
|
|
. borg-env/bin/activate
|
|
|
|
cd borg
|
2016-10-02 01:43:06 +03:00
|
|
|
pyinstaller --clean --distpath=/vagrant/borg scripts/borg.exe.spec
|
2017-07-30 03:01:10 +03:00
|
|
|
echo 'export PATH="/vagrant/borg:$PATH"' >> ~/.bash_profile
|
2015-09-28 01:05:52 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_tests(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg/borg
|
|
|
|
. ../borg-env/bin/activate
|
2016-10-15 16:21:38 +03:00
|
|
|
if which pyenv 2> /dev/null; then
|
2015-09-28 01:05:52 +03:00
|
|
|
# for testing, use the earliest point releases of the supported python versions:
|
2017-07-29 20:33:18 +03:00
|
|
|
pyenv global 3.5.0 3.6.0
|
|
|
|
pyenv local 3.5.0 3.6.0
|
2015-09-28 01:05:52 +03:00
|
|
|
fi
|
|
|
|
# otherwise: just use the system python
|
2016-10-15 16:21:38 +03:00
|
|
|
if which fakeroot 2> /dev/null; then
|
2015-10-21 00:27:11 +03:00
|
|
|
echo "Running tox WITH fakeroot -u"
|
2017-06-03 23:02:52 +03:00
|
|
|
fakeroot -u tox --skip-missing-interpreters
|
2015-09-28 01:05:52 +03:00
|
|
|
else
|
2015-10-21 00:27:11 +03:00
|
|
|
echo "Running tox WITHOUT fakeroot -u"
|
2015-09-28 01:05:52 +03:00
|
|
|
tox --skip-missing-interpreters
|
|
|
|
fi
|
2015-09-12 20:13:17 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def fix_perms
|
|
|
|
return <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
# . ~/.profile
|
2016-07-14 22:03:49 +03:00
|
|
|
if id "vagrant" >/dev/null 2>&1; then
|
|
|
|
chown -R vagrant /vagrant/borg
|
|
|
|
else
|
|
|
|
chown -R ubuntu /vagrant/borg
|
|
|
|
fi
|
2015-09-12 20:13:17 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
Vagrant.configure(2) do |config|
|
|
|
|
# use rsync to copy content to the folder
|
2016-10-17 18:37:33 +03:00
|
|
|
config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "-z"], :rsync__chown => false
|
2015-09-13 02:22:44 +03:00
|
|
|
# do not let the VM access . on the host machine via the default shared folder!
|
2015-09-12 20:13:17 +03:00
|
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
|
|
|
|
|
|
# fix permissions on synced folder
|
|
|
|
config.vm.provision "fix perms", :type => :shell, :inline => fix_perms
|
|
|
|
|
2015-09-13 02:22:44 +03:00
|
|
|
config.vm.provider :virtualbox do |v|
|
2015-09-13 19:05:03 +03:00
|
|
|
#v.gui = true
|
2017-06-02 03:29:05 +03:00
|
|
|
v.cpus = $cpus
|
2015-09-13 02:22:44 +03:00
|
|
|
end
|
|
|
|
|
2016-03-26 16:14:15 +03:00
|
|
|
config.vm.define "xenial64" do |b|
|
|
|
|
b.vm.box = "ubuntu/xenial64"
|
|
|
|
b.vm.provider :virtualbox do |v|
|
2017-06-02 03:29:05 +03:00
|
|
|
v.memory = 1024 + $wmem
|
2016-03-26 16:14:15 +03:00
|
|
|
end
|
|
|
|
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid
|
2016-07-14 22:03:49 +03:00
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("xenial64")
|
2016-11-24 06:03:54 +03:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
|
2016-07-14 22:03:49 +03:00
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("xenial64")
|
2016-03-26 16:14:15 +03:00
|
|
|
end
|
|
|
|
|
2017-06-18 19:07:45 +03:00
|
|
|
config.vm.define "stretch64" do |b|
|
|
|
|
b.vm.box = "debian/stretch64"
|
|
|
|
b.vm.provider :virtualbox do |v|
|
|
|
|
v.memory = 1024 + $wmem
|
|
|
|
end
|
|
|
|
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("stretch64")
|
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
|
2017-01-16 10:10:08 +03:00
|
|
|
b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
|
2017-07-30 03:01:10 +03:00
|
|
|
b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("stretch64")
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("stretch64")
|
2017-06-12 04:29:37 +03:00
|
|
|
end
|
|
|
|
|
2017-08-01 05:46:31 +03:00
|
|
|
config.vm.define "arch64" do |b|
|
|
|
|
b.vm.box = "terrywang/archlinux"
|
|
|
|
b.vm.provider :virtualbox do |v|
|
|
|
|
v.memory = 1024 + $wmem
|
|
|
|
end
|
|
|
|
b.vm.provision "packages arch", :type => :shell, :privileged => true, :inline => packages_arch
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("arch64")
|
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("arch64")
|
|
|
|
end
|
|
|
|
|
2017-07-30 03:01:10 +03:00
|
|
|
# TODO: create more VMs with python 3.5+ and openssl 1.1.
|
|
|
|
# See branch 1.1-maint for a better equipped Vagrantfile (but still on py34 and openssl 1.0).
|
2015-09-12 20:13:17 +03:00
|
|
|
end
|