Improve Vagrantfile to compile on Debian Jessie. (#252)

This commit is contained in:
Manuel Riel 2019-04-19 13:23:26 +08:00 committed by GitHub
parent b470d84c50
commit 8f7a2a8883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 102 additions and 41 deletions

143
Vagrantfile vendored
View File

@ -5,6 +5,19 @@ $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]
def fs_init(user)
return <<-EOF
# clean up (wrong/outdated) stuff we likely got via rsync:
rm -rf /vagrant/vorta/.tox 2> /dev/null
find /vagrant/vorta/src -name '__pycache__' -exec rm -rf {} \\; 2> /dev/null
chown -R #{user} /vagrant/vorta
touch ~#{user}/.bash_profile ; chown #{user} ~#{user}/.bash_profile
echo 'export LANG=en_US.UTF-8' >> ~#{user}/.bash_profile
echo 'export LC_CTYPE=en_US.UTF-8' >> ~#{user}/.bash_profile
echo 'export XDISTN=#{$xdistn}' >> ~#{user}/.bash_profile
EOF
end
def packages_debianoid(user)
return <<-EOF
apt update
@ -20,10 +33,68 @@ def packages_debianoid(user)
# for building python:
apt install -y zlib1g-dev libbz2-dev libncurses5-dev libreadline-dev liblzma-dev libsqlite3-dev libffi-dev
# minimal window manager and system tray icon support
apt install gdm3 gnome-shell-extension-appindicator
apt install xvfb herbstluftwm gnome-keyring
EOF
end
def install_pyenv(boxname)
return <<-EOF
curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
echo 'export PATH="$HOME/.pyenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile
echo 'export PYTHON_CONFIGURE_OPTS="--enable-shared"' >> ~/.bash_profile
EOF
end
def install_pythons(boxname)
return <<-EOF
. ~/.bash_profile
pyenv install 3.6.8
pyenv rehash
EOF
end
def build_pyenv_venv(boxname)
return <<-EOF
. ~/.bash_profile
cd /vagrant/vorta
pyenv global 3.6.8
pyenv virtualenv 3.6.8 vorta-env
ln -s ~/.pyenv/versions/vorta-env .
EOF
end
def install_pyinstaller()
return <<-EOF
. ~/.bash_profile
cd /vagrant/vorta
. vorta-env/bin/activate
pip install pyinstaller
EOF
end
def build_binary_with_pyinstaller(boxname)
return <<-EOF
. ~/.bash_profile
cd /vagrant/vorta
. vorta-env/bin/activate
pip uninstall pyqt5
# Use older PyQt5 to avoid DBus issue.
pip install pyqt5==5.11.3
pyinstaller --clean --noconfirm vorta.spec
EOF
end
def run_tests(boxname)
return <<-EOF
. ~/.bash_profile
cd /vagrant/vorta
. vorta-env/bin/activate
tox
fi
EOF
end
Vagrant.configure(2) do |config|
# use rsync to copy content to the folder
@ -31,33 +102,22 @@ Vagrant.configure(2) do |config|
# do not let the VM access . on the host machine via the default shared folder!
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.define "bionic64" do |b|
b.vm.box = "ubuntu/bionic64"
b.vm.provider :virtualbox do |v|
v.memory = 1024 + $wmem
end
# b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
# b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
# b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("bionic64")
# 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("bionic64")
end
config.vm.define "jessie64" do |b|
b.vm.box = "debian/jessie64"
b.vm.provider :virtualbox do |v|
v.memory = 1024 + $wmem
end
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("jessie64")
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("jessie64")
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("jessie64")
b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("jessie64")
# b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("jessie64")
end
# 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 "fs init", :type => :shell, :inline => fs_init("vagrant")
# b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
# b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("stretch64")
# b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("stretch64")
# b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("stretch64")
# b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
# b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
# 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")
# end
# config.vm.define "arch64" do |b|
# b.vm.box = "terrywang/archlinux"
@ -86,19 +146,20 @@ Vagrant.configure(2) do |config|
# b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("freebsd64")
# end
config.vm.define "darwin64" do |b|
b.vm.box = "ashiq/osx-10.14"
b.vm.provider :virtualbox do |v|
v.memory = 1536 + $wmem
v.customize ['modifyvm', :id, '--ostype', 'MacOS_64']
v.customize ['modifyvm', :id, '--paravirtprovider', 'default']
# Adjust CPU settings according to
# https://github.com/geerlingguy/macos-virtualbox-vm
v.customize ['modifyvm', :id, '--cpuidset',
'00000001', '000306a9', '00020800', '80000201', '178bfbff']
# Disable USB variant requiring Virtualbox proprietary extension pack
v.customize ["modifyvm", :id, '--usbehci', 'off', '--usbxhci', 'off']
end
# config.vm.define "darwin64" do |b|
# b.vm.box = "ashiq/osx-10.14"
# b.vm.provider :virtualbox do |v|
# v.memory = 1536 + $wmem
# v.customize ['modifyvm', :id, '--ostype', 'MacOS_64']
# v.customize ['modifyvm', :id, '--paravirtprovider', 'default']
# # Adjust CPU settings according to
# # https://github.com/geerlingguy/macos-virtualbox-vm
# v.customize ['modifyvm', :id, '--cpuidset',
# '00000001', '000306a9', '00020800', '80000201', '178bfbff']
# # Disable USB variant requiring Virtualbox proprietary extension pack
# v.customize ["modifyvm", :id, '--usbehci', 'off', '--usbxhci', 'off']
# end
# b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
# b.vm.provision "packages darwin", :type => :shell, :privileged => false, :inline => packages_darwin
# b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("darwin64")
@ -109,7 +170,7 @@ Vagrant.configure(2) do |config|
# b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
# b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("darwin64")
# b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("darwin64")
end
# end
# TODO: create more VMs with python 3.6 and openssl 1.1.
# See branch 1.1-maint for a better equipped Vagrantfile (but still on py34 and openssl 1.0).